sendou.ink/app/components/icons/Minus.tsx
2022-02-28 20:27:42 +02:00

19 lines
379 B
TypeScript

export function MinusIcon({ className }: { className?: string }) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
className={className}
fill="none"
viewBox="0 0 24 24"
stroke="currentColor"
>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M20 12H4"
/>
</svg>
);
}