mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-27 14:44:12 +00:00
102 lines
1.5 KiB
Plaintext
102 lines
1.5 KiB
Plaintext
---
|
|
title: Badge
|
|
description: Displays a badge or a component that looks like a badge.
|
|
component: true
|
|
---
|
|
|
|
<ComponentPreview
|
|
name="badge-demo"
|
|
title="Badge"
|
|
description="A default badge"
|
|
/>
|
|
|
|
## Installation
|
|
|
|
<CodeTabs>
|
|
|
|
<TabsList>
|
|
<TabsTrigger value="cli">CLI</TabsTrigger>
|
|
<TabsTrigger value="manual">Manual</TabsTrigger>
|
|
</TabsList>
|
|
<TabsContent value="cli">
|
|
|
|
```bash
|
|
npx shadcn@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>
|
|
|
|
</CodeTabs>
|
|
|
|
## 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"
|
|
title="Badge"
|
|
description="A default badge"
|
|
/>
|
|
|
|
---
|
|
|
|
### Secondary
|
|
|
|
<ComponentPreview
|
|
name="badge-secondary"
|
|
title="Badge"
|
|
description="A badge using secondary as variant."
|
|
/>
|
|
|
|
---
|
|
|
|
### Outline
|
|
|
|
<ComponentPreview
|
|
name="badge-outline"
|
|
title="Badge"
|
|
description="A badge using outline as variant."
|
|
/>
|
|
|
|
---
|
|
|
|
### Destructive
|
|
|
|
<ComponentPreview name="badge-destructive" description="A destructive badge." />
|