4
0
forked from crowetic/commerce

17 lines
325 B
TypeScript
Raw Normal View History

2020-10-01 20:40:40 -05:00
import React from 'react'
2020-09-30 15:56:32 -03:00
const Cross = ({ ...props }) => {
return (
<svg fill="none" viewBox="0 0 24 24" stroke="currentColor" {...props}>
<path
2020-10-01 17:25:48 -03:00
strokeLinecap="round"
strokeLinejoin="round"
strokeWidth="2"
2020-09-30 15:56:32 -03:00
d="M6 18L18 6M6 6l12 12"
/>
</svg>
2020-10-01 20:40:40 -05:00
)
}
2020-09-30 15:56:32 -03:00
2020-10-01 20:40:40 -05:00
export default Cross