1
0
mirror of https://github.com/vercel/commerce.git synced 2025-03-16 07:22:32 +00:00
2020-10-01 21:34:08 -05:00

15 lines
298 B
TypeScript

const Cross = ({ ...props }) => {
return (
<svg fill="none" viewBox="0 0 24 24" stroke="currentColor" {...props}>
<path
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
d="M6 18L18 6M6 6l12 12"
/>
</svg>
)
}
export default Cross