import { cn } from "@lib/utils" import { Root } from "@radix-ui/react-slot" export function Title2Medium({ className, asChild, ...props }: React.ComponentProps<"h2"> & { asChild?: boolean }) { const Comp = asChild ? Root : "h2" return ( ) }