import { clsx } from 'clsx'; export default function Badge({ children, type = 'primary', uppercase, interactive, }: { children: React.ReactNode type?: 'primary' | 'secondary' | 'text-only' uppercase?: boolean interactive?: boolean }) { const stylesForType = () => { switch (type) { case 'primary': return clsx( 'px-1.5 py-[0.3rem] rounded-md', 'bg-gray-100/80 dark:bg-gray-900/80', 'border border-gray-200/60 dark:border-gray-800/75' ); case 'secondary': return clsx( 'px-[0.3rem] py-1 rounded-[0.25rem]', 'bg-gray-300/30 dark:bg-gray-700/50', 'text-medium', 'font-medium text-[0.7rem]', interactive && 'hover:text-gray-900 dark:hover:text-gray-100', interactive && 'active:bg-gray-200 dark:active:bg-gray-700/60', ); } }; return ( {children} ); }