* 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
485 B
TypeScript
13 lines
485 B
TypeScript
export function ReplyIcon(props: JSX.IntrinsicElements["svg"]) {
|
|
return (
|
|
<svg width="24" height="24" fill="none" viewBox="0 0 24 24" {...props}>
|
|
<path
|
|
stroke="currentColor"
|
|
strokeLinejoin="round"
|
|
strokeWidth="1.5"
|
|
d="m21.76 11.45-8.146-7.535a.75.75 0 0 0-1.26.55V8a.51.51 0 0 1-.504.504C3.765 8.632 1.604 11.92 1.604 20.25c1.47-2.94 2.22-4.679 10.245-4.748a.501.501 0 0 1 .505.498v3.535a.75.75 0 0 0 1.26.55l8.145-7.535a.75.75 0 0 0 0-1.1Z"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|