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

17 lines
325 B
TypeScript

import React from 'react'
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