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

34 lines
1.0 KiB
TypeScript

export function GlobeLinesIcon({ 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"
>
<circle cx="12" cy="12.0232" r="9" stroke="currentColor" strokeWidth="2" />
<path
d="M12 3C12.7978 3 13.789 3.67288 14.6406 5.37598C15.4624 7.0195 16 9.36016 16 12C16 14.6398 15.4624 16.9805 14.6406 18.624C13.789 20.3271 12.7978 21 12 21C11.2022 21 10.211 20.3271 9.35938 18.624C8.53761 16.9805 8 14.6398 8 12C8 9.36016 8.53761 7.0195 9.35938 5.37598C10.211 3.67288 11.2022 3 12 3Z"
stroke="currentColor"
strokeWidth="2"
/>
<path
d="M4 9H20"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
<path
d="M4 15H20"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
</svg>
);
}