mirror of
https://github.com/vercel/commerce.git
synced 2025-03-15 23:12:32 +00:00
16 lines
319 B
TypeScript
16 lines
319 B
TypeScript
const Minus = ({ ...props }) => {
|
|
return (
|
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" {...props}>
|
|
<path
|
|
d="M5 12H19"
|
|
stroke="currentColor"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export default Minus
|