forked from crowetic/commerce
22 lines
406 B
TypeScript
22 lines
406 B
TypeScript
const Cross = ({ ...props }) => {
|
|
return (
|
|
<svg
|
|
viewBox="0 0 24 24"
|
|
width="24"
|
|
height="24"
|
|
stroke="currentColor"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
fill="none"
|
|
shapeRendering="geometricPrecision"
|
|
{...props}
|
|
>
|
|
<path d="M18 6L6 18" />
|
|
<path d="M6 6l12 12" />
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export default Cross
|