import { LucideIcon } from 'lucide-react'; interface FeatureItemProps { icon: LucideIcon; text: string; className?: string; } export function FeatureItem({ icon: Icon, text, className }: FeatureItemProps) { return (
{text}
); }