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