2020-10-26 09:27:21 -03:00
|
|
|
const Cross = ({ ...props }) => {
|
2020-10-25 23:43:15 -03:00
|
|
|
return (
|
|
|
|
<svg
|
|
|
|
viewBox="0 0 24 24"
|
|
|
|
width="24"
|
|
|
|
height="24"
|
|
|
|
stroke="currentColor"
|
2020-11-06 12:07:57 -03:00
|
|
|
strokeWidth="1.5"
|
|
|
|
strokeLinecap="round"
|
|
|
|
strokeLinejoin="round"
|
2020-10-25 23:43:15 -03:00
|
|
|
fill="none"
|
2020-11-06 12:07:57 -03:00
|
|
|
shapeRendering="geometricPrecision"
|
2020-10-25 23:43:15 -03:00
|
|
|
{...props}
|
|
|
|
>
|
2020-10-26 09:27:21 -03:00
|
|
|
<path d="M18 6L6 18" />
|
|
|
|
<path d="M6 6l12 12" />
|
2020-10-25 23:43:15 -03:00
|
|
|
</svg>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-10-26 09:27:21 -03:00
|
|
|
export default Cross
|