mirror of
https://github.com/harivansh-afk/sandbox-agent.git
synced 2026-04-16 17:01:06 +00:00
11 lines
289 B
TypeScript
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>
|
|
);
|
|
}
|