snort/src/Icons/Plus.tsx
ennmichael 5ad4971fc0
Add prettier formatting (#214)
* chore: add prettier

* chore: format codebase
2023-02-07 20:04:50 +00:00

22 lines
371 B
TypeScript

const Plus = () => {
return (
<svg
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M8 1V15M1 8H15"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
};
export default Plus;