snort/src/Icons/Plus.tsx

10 lines
290 B
TypeScript
Raw Normal View History

2023-01-25 18:08:53 +00:00
const Plus = () => {
return (
2023-02-09 12:26:54 +00:00
<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" />
2023-01-25 18:08:53 +00:00
</svg>
);
};
2023-01-25 18:08:53 +00:00
export default Plus;