forked from crowetic/commerce
23 lines
468 B
TypeScript
23 lines
468 B
TypeScript
const Plus = ({ ...props }) => {
|
|
return (
|
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" {...props}>
|
|
<path
|
|
d="M12 5V19"
|
|
stroke="black"
|
|
stroke-width="1.5"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
<path
|
|
d="M5 12H19"
|
|
stroke="black"
|
|
stroke-width="1.5"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export default Plus
|