-
Notifications
You must be signed in to change notification settings - Fork 0
/
trash
38 lines (34 loc) · 1.57 KB
/
trash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<button className="w-8 h-8 rounded bg-zinc-900" title="Segunda">S</button>
<button className="w-8 h-8 rounded bg-zinc-900" title="Terça">T</button>
<button className="w-8 h-8 rounded bg-zinc-900" title="Quarta">Q</button>
<button className="w-8 h-8 rounded bg-zinc-900" title="Quinta">Q</button>
<button className="w-8 h-8 rounded bg-zinc-900" title="Sexta">S</button>
<button className="w-8 h-8 rounded bg-zinc-900" title="Sábado">S</button>
<button className="w-8 h-8 rounded bg-zinc-900" title="Domingo">D</button>
<Input
id="game"
placeholder="Selecione o game que deseja jogar"
/>
<Select.Root>
<Select.Trigger>
<Select.Value />
<Select.Icon />
<CheckIcon />
</Select.Trigger>
<Select.Portal className="bg-zinc-900 px-4 py-3 rounded text-sm placeholder:text-zinc-500">
<Select.Content>
<Select.ScrollUpButton />
<ChevronUpIcon />
<Select.Viewport>
<Select.Group>
<Select.Label>Banana</Select.Label>
<Select.Item value="Banana">
<Select.ItemText />
<Select.ItemIndicator />
</Select.Item>
</Select.Group>
</Select.Viewport>
<Select.ScrollDownButton />
</Select.Content>
</Select.Portal>
</Select.Root>