logo

Badge

Badge generates a small badge of its child(ren).

Usage#

Demo#

import { Badge } from "pigment-ui";
import { BellIcon } from "lucide-react";

function BadgeDemo() {
  return (
    <Badge content="99+">
      <BellIcon className="size-8" />
    </Badge>
  );
}
Edit this page