2026-06-01 01:51:39 +08:00

49 lines
1.4 KiB
JavaScript

export function CoinIcon() {
return (
<svg viewBox="0 0 28 28" aria-hidden="true">
<path d="M6 8c0-2.2 3.6-4 8-4s8 1.8 8 4-3.6 4-8 4-8-1.8-8-4Zm0 5c0 2.2 3.6 4 8 4s8-1.8 8-4M6 18c0 2.2 3.6 4 8 4s8-1.8 8-4" />
<path d="M22 13v5M6 8v10" />
</svg>
);
}
export function UserPlusIcon() {
return (
<svg viewBox="0 0 28 28" aria-hidden="true">
<path d="M11 14a5 5 0 1 0 0-10 5 5 0 0 0 0 10ZM3 24c1-4.2 4-6.5 8-6.5s7 2.3 8 6.5M22 8v8M18 12h8" />
</svg>
);
}
export function ActiveUsersIcon() {
return (
<svg viewBox="0 0 28 28" aria-hidden="true">
<path d="M9 14a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9ZM19 14a3.8 3.8 0 1 0 0-7.6 3.8 3.8 0 0 0 0 7.6ZM2.8 24c.8-4 3.2-6 6.2-6s5.4 2 6.2 6M15.5 18.5c2.8.2 5 2 5.7 5.5" />
</svg>
);
}
export function CrownIcon() {
return (
<svg viewBox="0 0 28 28" aria-hidden="true">
<path d="m4 9 5.5 4.5L14 6l4.5 7.5L24 9l-2.2 12H6.2L4 9ZM7 24h14" />
</svg>
);
}
export function TrendIcon() {
return (
<svg viewBox="0 0 28 28" aria-hidden="true">
<path d="M4 23h20M7 19v-5M13 19V9M19 19V5M6 11l6-5 5 4 6-8" />
</svg>
);
}
export function StarUserIcon() {
return (
<svg viewBox="0 0 28 28" aria-hidden="true">
<path d="M10 13a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9ZM3 24c.8-4.4 3.5-7 7-7 1.4 0 2.7.4 3.8 1.2M21 15l1.5 3 3.3.5-2.4 2.3.6 3.2-3-1.6-3 1.6.6-3.2-2.4-2.3 3.3-.5L21 15Z" />
</svg>
);
}