* 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
25 lines
491 B
TypeScript
25 lines
491 B
TypeScript
import type { SVGProps } from "react";
|
|
|
|
export function BoldIcon(
|
|
props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>,
|
|
) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="24"
|
|
height="24"
|
|
fill="none"
|
|
viewBox="0 0 24 24"
|
|
{...props}
|
|
>
|
|
<path
|
|
stroke="currentColor"
|
|
strokeLinecap="square"
|
|
strokeLinejoin="round"
|
|
strokeWidth="2"
|
|
d="M13 12H6m7 0a4 4 0 000-8H8a2 2 0 00-2 2v6m7 0h1a4 4 0 010 8H8a2 2 0 01-2-2v-6"
|
|
></path>
|
|
</svg>
|
|
);
|
|
}
|