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