* 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
17 lines
1.1 KiB
TypeScript
17 lines
1.1 KiB
TypeScript
import type { SVGProps } from "react";
|
|
|
|
export function VerifiedIcon(
|
|
props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>,
|
|
) {
|
|
return (
|
|
<svg width="24" height="24" fill="none" viewBox="0 0 24 24" {...props}>
|
|
<path
|
|
fill="currentColor"
|
|
fillRule="evenodd"
|
|
d="M10.615 2.632a1.835 1.835 0 0 1 2.771 0l1.37 1.576c.076.087.192.13.306.111l2.063-.327a1.835 1.835 0 0 1 2.122 1.781l.036 2.088a.336.336 0 0 0 .163.282l1.79 1.075a1.836 1.836 0 0 1 .481 2.73l-1.314 1.622a.336.336 0 0 0-.057.32l.68 1.975a1.836 1.836 0 0 1-1.385 2.4l-2.05.398a.336.336 0 0 0-.25.209l-.747 1.95a1.836 1.836 0 0 1-2.604.947l-1.826-1.013a.336.336 0 0 0-.326 0l-1.826 1.013a1.836 1.836 0 0 1-2.604-.947l-.748-1.95a.336.336 0 0 0-.25-.21l-2.05-.397a1.836 1.836 0 0 1-1.385-2.4l.68-1.975a.335.335 0 0 0-.056-.32l-1.314-1.623a1.835 1.835 0 0 1 .48-2.729l1.791-1.075c.1-.06.16-.166.163-.282l.036-2.088a1.836 1.836 0 0 1 2.122-1.78l2.063.326a.335.335 0 0 0 .306-.111l1.37-1.576Zm4.416 8.648a.75.75 0 1 0-1.06-1.06L11 13.19l-.97-.97a.75.75 0 0 0-1.06 1.06l1.5 1.5a.75.75 0 0 0 1.06 0l3.5-3.5Z"
|
|
clipRule="evenodd"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|