0

Badge

Displays a badge or a component that looks like a badge.

BadgeSecondaryDestructiveOutline
import { Badge } from "@/components/ui/badge"

export default function BadgeDemo() {

Installation

bunx --bun shadcn@latest add @ondo-ui/badge

Usage

import { Badge } from "@/components/ui/badge"
<Badge variant="default | secondary | info | success | warning | destructive | outline | ghost">Badge</Badge>

Examples

Variants

Use the variant prop to change the variant of the badge.

DefaultSecondaryInfoSuccessWarningDestructiveOutlineGhost
import { Badge } from "@/components/ui/badge"

export default function BadgeVariants() {

With Icon

You can render an icon inside the badge. Use data-icon="inline-start" to render the icon on the left and data-icon="inline-end" to render the icon on the right.

VerifiedBookmark
import { IconCircleCheck, IconBookmark } from "@tabler/icons-react"

import { Badge } from "@/components/ui/badge"

With Spinner

You can render a spinner inside the badge. Remember to add the data-icon="inline-start" or data-icon="inline-end" prop to the spinner.

DeletingGenerating
import { Badge } from "@/components/ui/badge"
import { Spinner } from "@/components/ui/spinner"

Use the render prop to render a link as a badge.

import { IconArrowUpRight } from "@tabler/icons-react"

import { Badge } from "@/components/ui/badge"

Custom Colors

You can customize the colors of a badge by adding custom classes such as bg-green-50 dark:bg-green-800 to the Badge component.

BlueGreenSkyPurpleRed
import { Badge } from "@/components/ui/badge"

export default function BadgeCustomColors() {

API reference

Badge

The Badge component displays a badge or a component that looks like a badge.

PropTypeDefault
variant"default" | "secondary" | "info" | "success" | "warning" | "destructive" | "outline" | "ghost" | "link""default"
classNamestring-