4
0
forked from crowetic/commerce

16 lines
319 B
TypeScript
Raw Normal View History

const Minus = ({ ...props }) => {
return (
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" {...props}>
<path
d="M5 12H19"
2020-10-13 14:34:24 -03:00
stroke="currentColor"
2020-10-19 16:28:05 -03:00
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
)
}
export default Minus