Files
tkmind_go/ui/desktop/src/components/icons/Cog.tsx
T

27 lines
1.7 KiB
TypeScript

export function Cog({ className = '' }: { className?: string }) {
return (
<svg
className={className}
width="16"
height="16"
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<g clipPath="url(#clip0_395_860)">
<path
d="M7.99992 13.3334C9.41441 13.3334 10.771 12.7715 11.7712 11.7713C12.7713 10.7711 13.3333 9.41453 13.3333 8.00004C13.3333 6.58555 12.7713 5.229 11.7712 4.2288C10.771 3.22861 9.41441 2.66671 7.99992 2.66671M7.99992 13.3334C6.58543 13.3334 5.22888 12.7715 4.22868 11.7713C3.22849 10.7711 2.66659 9.41453 2.66659 8.00004M7.99992 13.3334L7.99992 14.6667M7.99992 2.66671C6.58543 2.66671 5.22888 3.22861 4.22868 4.2288C3.22849 5.229 2.66659 6.58555 2.66659 8.00004M7.99992 2.66671L7.99992 1.33337M2.66659 8.00004L1.33325 8.00004M9.33325 8.00004C9.33325 8.35366 9.19278 8.6928 8.94273 8.94285C8.69268 9.1929 8.35354 9.33337 7.99992 9.33337C7.6463 9.33337 7.30716 9.1929 7.05711 8.94285C6.80706 8.6928 6.66659 8.35366 6.66659 8.00004C6.66659 7.64642 6.80706 7.30728 7.05711 7.05723C7.30716 6.80718 7.6463 6.66671 7.99992 6.66671C8.35354 6.66671 8.69268 6.80718 8.94273 7.05723C9.19278 7.30728 9.33325 7.64642 9.33325 8.00004ZM9.33325 8.00004L14.6666 8.00004M11.3333 13.7733L10.6666 12.62M7.33325 6.84677L4.66659 2.22677M13.7734 11.3334L12.62 10.6667M2.22648 4.66671L3.37981 5.33337M13.7734 4.66671L12.62 5.33337M2.22648 11.3334L3.37981 10.6667M11.3333 2.22677L10.6666 3.3801M7.33325 9.15336L4.66659 13.7734"
stroke="currentColor"
strokeLinecap="round"
strokeLinejoin="round"
/>
</g>
<defs>
<clipPath id="clip0_395_860">
<rect width="16" height="16" fill="white" />
</clipPath>
</defs>
</svg>
);
}