* 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
35 lines
658 B
TypeScript
35 lines
658 B
TypeScript
import type { SVGProps } from "react";
|
|
|
|
export function InfoIcon(
|
|
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="round"
|
|
strokeLinejoin="round"
|
|
strokeWidth="1.5"
|
|
d="M10.75 11H12v5.25M21.25 12a9.25 9.25 0 11-18.5 0 9.25 9.25 0 0118.5 0z"
|
|
></path>
|
|
<rect
|
|
width="1.25"
|
|
height="1.25"
|
|
x="11.375"
|
|
y="7.375"
|
|
fill="currentColor"
|
|
stroke="currentColor"
|
|
strokeWidth="0.25"
|
|
rx="0.625"
|
|
></rect>
|
|
</svg>
|
|
);
|
|
}
|