* 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
638 B
TypeScript
14 lines
638 B
TypeScript
export function QuoteIcon(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="M13.77 14.604c0-2.013 1.675-3.646 3.74-3.646 2.066 0 3.74 1.633 3.74 3.646 0 2.014-1.674 3.646-3.74 3.646-2.065 0-3.74-1.632-3.74-3.646Zm0 0c-.267-4.948 2.137-6.77 5.343-8.854M2.77 14.604c0-2.013 1.675-3.646 3.74-3.646 2.066 0 3.74 1.633 3.74 3.646 0 2.014-1.674 3.646-3.74 3.646-2.065 0-3.74-1.632-3.74-3.646Zm0 0c-.267-4.948 2.137-6.77 5.343-8.854"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|