We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9af491 commit e2b798cCopy full SHA for e2b798c
docs/components/tag.mdx
@@ -177,9 +177,9 @@ import { InformationCircleIcon } from '@heroicons/react/solid'
177
export default function App() {
178
return (
179
<Flex gap="4">
180
- <Tag text="Primary" icon="InformationCircleIcon" variant="primary" />
181
- <Tag text="Warning" icon="InformationCircleIcon" variant="warning" />
182
- <Tag text="Success" icon="CheckCircleIcon" variant="success" />
+ <Tag text="Primary" icon={InformationCircleIcon} variant="primary" />
+ <Tag text="Warning" icon={InformationCircleIcon} variant="warning" />
+ <Tag text="Success" icon={CheckCircleIcon} variant="success" />
183
</Flex>
184
)
185
}`} />
0 commit comments