mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
19 lines
718 B
TypeScript
19 lines
718 B
TypeScript
const IconPlus = ({ ...props }) => {
|
|
return (
|
|
<svg
|
|
width="12"
|
|
height="2"
|
|
viewBox="0 0 12 2"
|
|
fill="none"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
>
|
|
<path
|
|
d="M10.6667 0.333496H1.33335C1.15654 0.333496 0.986974 0.403734 0.861949 0.528758C0.736925 0.653783 0.666687 0.823352 0.666687 1.00016C0.666687 1.17697 0.736925 1.34654 0.861949 1.47157C0.986974 1.59659 1.15654 1.66683 1.33335 1.66683H10.6667C10.8435 1.66683 11.0131 1.59659 11.1381 1.47157C11.2631 1.34654 11.3334 1.17697 11.3334 1.00016C11.3334 0.823352 11.2631 0.653783 11.1381 0.528758C11.0131 0.403734 10.8435 0.333496 10.6667 0.333496Z"
|
|
fill="#141414"
|
|
/>
|
|
</svg>
|
|
)
|
|
}
|
|
|
|
export default IconPlus
|