interface IconProps { className?: string; } export function CarIcon({ className = 'w-4 h-4' }: IconProps) { return ( ); }