sandbox-agent/frontend/packages/website/src/components/ui/Badge.tsx
2026-01-27 18:32:14 -08:00

11 lines
289 B
TypeScript

interface BadgeProps {
children: React.ReactNode;
}
export function Badge({ children }: BadgeProps) {
return (
<span className="inline-flex px-3 py-1 rounded-full bg-accent/10 border border-accent/20 text-accent text-xs font-mono font-medium">
{children}
</span>
);
}