mirror of
https://github.com/vercel/commerce.git
synced 2025-03-16 07:22:32 +00:00
17 lines
325 B
TypeScript
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
|