mirror of
https://github.com/vercel/commerce.git
synced 2025-05-16 06:26:58 +00:00
18 lines
425 B
TypeScript
18 lines
425 B
TypeScript
export default function CloseIcon({ className }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 0 24 24"
|
|
stroke="currentColor"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
shapeRendering="geometricPrecision"
|
|
className={className}
|
|
>
|
|
<path d="M18 6L6 18" />
|
|
<path d="M6 6l12 12" />
|
|
</svg>
|
|
);
|
|
}
|