Skip to content

Commit

Permalink
fix: add playground example
Browse files Browse the repository at this point in the history
  • Loading branch information
evanfrawley committed Aug 5, 2024
1 parent 7c3d946 commit ef1a2d7
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions apps/playground/app/sink/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,23 @@ export default function Sink() {
Multiline
</Button>
</Tooltip>

<Tooltip content={
<DataList.Root my="1">
<DataList.Item>
<DataList.Label style={{ color: 'var(--gray-5)'}}>Name</DataList.Label>
<DataList.Value style={{ color: 'var(--gray-1)'}}>Susan Kare</DataList.Value>
</DataList.Item>
<DataList.Item>
<DataList.Label style={{ color: 'var(--gray-5)'}}>Email</DataList.Label>
<DataList.Value style={{ color: 'var(--gray-1)'}}>[email protected]</DataList.Value>
</DataList.Item>
</DataList.Root>
}>
<Button variant="solid" size="1">
Non-string ReactNode
</Button>
</Tooltip>
</Flex>
</DocsGridSectionItem>

Expand Down

0 comments on commit ef1a2d7

Please sign in to comment.