import { LucideIcon } from 'lucide-react'; import { Box } from './Box'; import { Icon } from './Icon'; import { Surface } from './Surface'; import { Text } from './Text'; export interface PresetCardProps { title: string; description: string; icon: LucideIcon; onClick: () => void; isSelected?: boolean; } export const PresetCard = ({ title, description, icon, onClick, isSelected = false }: PresetCardProps) => { return ( {title} {description} ); };