* 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
14 lines
464 B
TypeScript
14 lines
464 B
TypeScript
export function ThreadIcon(props: JSX.IntrinsicElements["svg"]) {
|
|
return (
|
|
<svg width="24" height="24" fill="none" viewBox="0 0 24 24" {...props}>
|
|
<path
|
|
stroke="currentColor"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="1.5"
|
|
d="M17.25 14.25h2.002a2 2 0 0 0 2-2v-6.5a2 2 0 0 0-2-2H9.002a2 2 0 0 0-2 2v2m8.25 0h-10.5a2 2 0 0 0-2 2v6.5a2 2 0 0 0 2 2h1.25v2.5l4.5-2.5h4.75a2 2 0 0 0 2-2v-6.5a2 2 0 0 0-2-2Z"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|