mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-09 20:30:54 -05:00
* Remove friend code * Revive TO Tools admin page * Revive TO Tools maps page * Initial one mode only map list * Add modesIncluded arg * Handle no maps picked for SZ only generation * Tiebreaker is always from the maps of the teams * Make modesIncluded necessary arg * Tiebreaker is from neither team's pool if no overlap * Handles worst case duplication * Handles one team submitted no maps test * Fix crash * Seed * Can change one mode tournament map pool * Fix join page link * Remove useless TODO * Fixes related to mapListGeneratorAvailable * Fix map list generation considering impossible map lists making it take forever * Show unlisted select for both sides * Add info texts * Remove register button * Add todos * Finished version for ITZ * Times * Remove TODOs * 23->24
17 lines
495 B
TypeScript
17 lines
495 B
TypeScript
export function UserIcon({ className }: { className?: string }) {
|
|
return (
|
|
<svg
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
viewBox="0 0 24 24"
|
|
fill="currentColor"
|
|
className={className}
|
|
>
|
|
<path
|
|
fillRule="evenodd"
|
|
d="M7.5 6a4.5 4.5 0 119 0 4.5 4.5 0 01-9 0zM3.751 20.105a8.25 8.25 0 0116.498 0 .75.75 0 01-.437.695A18.683 18.683 0 0112 22.5c-2.786 0-5.433-.608-7.812-1.7a.75.75 0 01-.437-.695z"
|
|
clipRule="evenodd"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|