import {ReactNode} from 'react'; import clsx from 'clsx'; export interface BadgeProps { children: ReactNode; className?: string; withBorder?: boolean; top?: string; right?: string; } export function Badge({ children, className, withBorder = true, top = 'top-2', right = 'right-4', }: BadgeProps) { return ( {children} ); }