import { Box } from '@/ui/Box'; import { Icon } from '@/ui/Icon'; import { Text } from '@/ui/Text'; import { LucideIcon } from 'lucide-react'; interface FeatureItemProps { icon: LucideIcon; text: string; } export function FeatureItem({ icon, text }: FeatureItemProps) { return ( {text} ); }