mirror of
https://github.com/yaklang/yaklang-chrome-extension.git
synced 2026-09-25 04:31:52 +08:00
7 lines
229 B
TypeScript
7 lines
229 B
TypeScript
import type { HTMLAttributes } from 'react';
|
|
import { cn } from '@/lib/cn';
|
|
|
|
export function Badge({ className, ...props }: HTMLAttributes<HTMLSpanElement>) {
|
|
return <span className={cn('ui-badge', className)} {...props} />;
|
|
}
|