22 lines
489 B
TypeScript
22 lines
489 B
TypeScript
interface IconProps {
|
|
className?: string;
|
|
}
|
|
|
|
export function CarIcon({ className = 'w-4 h-4' }: IconProps) {
|
|
return (
|
|
<svg
|
|
className={className}
|
|
viewBox="0 0 24 24"
|
|
fill="none"
|
|
stroke="currentColor"
|
|
strokeWidth={2}
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
>
|
|
<path d="M5 17h14v-5l-2-6H7L5 12v5z" />
|
|
<circle cx="7.5" cy="17" r="2" />
|
|
<circle cx="16.5" cy="17" r="2" />
|
|
<path d="M5 12h14" />
|
|
</svg>
|
|
);
|
|
}
|