import { LucideIcon } from 'lucide-react'; import { Box } from './Box'; import { Button } from './Button'; import { Icon } from './Icon'; import { Stack } from './Stack'; import { Text } from './Text'; interface RenewalItemProps { name: string; renewDateLabel: string; priceLabel: string; icon: LucideIcon; onRenew?: () => void; } export function RenewalItem({ name, renewDateLabel, priceLabel, icon, onRenew, }: RenewalItemProps) { return ( {name} Renews {renewDateLabel} {priceLabel} ); }