import { type LucideIcon } from 'lucide-react'; import { cn } from '../../lib/classname'; type FormatItemProps = { label: string; onClick: () => void; icon: LucideIcon; isSelected: boolean; }; export function FormatItem(props: FormatItemProps) { const { label, onClick, icon: Icon, isSelected } = props; return ( ); }