4
0
forked from crowetic/commerce

17 lines
332 B
TypeScript
Raw Normal View History

2020-09-30 15:56:32 -03:00
import React from "react";
const Cross = ({ ...props }) => {
return (
<svg fill="none" viewBox="0 0 24 24" stroke="currentColor" {...props}>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="2"
d="M6 18L18 6M6 6l12 12"
/>
</svg>
);
};
export default Cross;