Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions apps/docs/content/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,18 @@ title: zen
<Box padding="5" border borderRadius="lg" marginBottom="6" backgroundColor="surface-base" style={{ breakInside: 'avoid' }}>
<Column gap="4">
<Text size="sm" color="muted" weight="medium">Select</Text>
<Select label="Country" placeholder="Select country" items={['United States', 'United Kingdom', 'Canada', 'Australia']} />
<ComboBox label="Framework" placeholder="Choose one" items={['React', 'Vue', 'Angular', 'Svelte']} />
<Select label="Country" placeholder="Select country">
<ListItem id="us">United States</ListItem>
<ListItem id="uk">United Kingdom</ListItem>
<ListItem id="ca">Canada</ListItem>
<ListItem id="au">Australia</ListItem>
</Select>
<ComboBox label="Framework" placeholder="Choose one">
<ListItem id="react">React</ListItem>
<ListItem id="vue">Vue</ListItem>
<ListItem id="angular">Angular</ListItem>
<ListItem id="svelte">Svelte</ListItem>
</ComboBox>
</Column>
</Box>

Expand Down