Files
2026-07-13 13:32:57 +08:00

74 lines
1.7 KiB
TypeScript

export function BugIcon({ className }: { className?: string }) {
return (
<svg
className={className}
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M18 17L21 19"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M6 17L3 19"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M18 13H21"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M18 9L21 7"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M8 8H16C17.1046 8 18 8.89543 18 10V15C18 18.3137 15.3137 21 12 21C8.68629 21 6 18.3137 6 15V10C6 8.89543 6.89543 8 8 8Z"
stroke="currentColor"
strokeWidth="2"
/>
<path
d="M3 13H6"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M12 21V14"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M16 7C16 4.79086 14.2091 3 12 3C9.79086 3 8 4.79086 8 7"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
/>
<path
d="M6 9L3 7"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}