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