Files
shadcn-ui/apps/www/content/docs/components/badge.mdx
shadcn 11c31af94f feat(www): add description and edit in v0 to examples (#3518)
* feat(www): add description and edit in v0 to examples

* fix: missing icon
2024-04-17 22:14:40 +04:00

92 lines
1.4 KiB
Plaintext

---
title: Badge
description: Displays a badge or a component that looks like a badge.
component: true
---
<ComponentPreview name="badge-demo" description="A badge" />
## Installation
<Tabs defaultValue="cli">
<TabsList>
<TabsTrigger value="cli">CLI</TabsTrigger>
<TabsTrigger value="manual">Manual</TabsTrigger>
</TabsList>
<TabsContent value="cli">
```bash
npx shadcn-ui@latest add badge
```
</TabsContent>
<TabsContent value="manual">
<Steps>
<Step>Copy and paste the following code into your project.</Step>
<ComponentSource name="badge" />
<Step>Update the import paths to match your project setup.</Step>
</Steps>
</TabsContent>
</Tabs>
## Usage
```tsx
import { Badge } from "@/components/ui/badge"
```
```tsx
<Badge variant="outline">Badge</Badge>
```
### Link
You can use the `badgeVariants` helper to create a link that looks like a badge.
```tsx
import { badgeVariants } from "@/components/ui/badge"
```
```tsx
<Link className={badgeVariants({ variant: "outline" })}>Badge</Link>
```
## Examples
### Default
<ComponentPreview name="badge-demo" description="A badge" />
---
### Secondary
<ComponentPreview
name="badge-secondary"
description="A badge using secondary as variant."
/>
---
### Outline
<ComponentPreview
name="badge-outline"
description="A badge using outline as variant."
/>
---
### Destructive
<ComponentPreview name="badge-destructive" description="A destructive badge." />