* feat: redesign * feat: update other columns to new design * chore: small fixes * fix: better manage external webview * feat: redesign note * feat: update ui * chore: update * chore: update * chore: polish ui * chore: update auth ui * feat: finalize note design * chore: small fixes * feat: add window management in rust * chore: format * feat: update ui for event screen * feat: update event screen * feat: final
13 lines
303 B
TypeScript
13 lines
303 B
TypeScript
export function PlusIcon(props: JSX.IntrinsicElements["svg"]) {
|
|
return (
|
|
<svg width="24" height="24" fill="none" viewBox="0 0 24 24" {...props}>
|
|
<path
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeWidth="1.5"
|
|
d="M12 6.75V12m0 0v5.25M12 12H6.75M12 12h5.25"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|