ci-electrical/web/components/ui/Badge.tsx

2 lines
202 B
TypeScript

export default function Badge({ children }: { children: React.ReactNode }) { return <span className="inline-block rounded bg-slate-100 px-2 py-1 text-xs font-medium text-slate-700">{children}</span>; }