import type { HTMLAttributes } from "react"; import { cn } from "../../lib/cn"; export function Tag({ children, className, ...props }: HTMLAttributes) { return ( {children} ); }