Saaj UI

Badge

A Badge is a small visual indicator used to display a short piece of information, such as a number, label, or status.

Installation

npx saaj add badge

Usage

import { Badge } from '@/components/ui/badge';
 
export function BadgeDemo() {
  return (
    <Badge>
      <Badge.Text>New</Badge.Text>
    </Badge>
  );
}

On this page