import * as React from "react"; import { cn } from "../../utils/cn"; type MicroLabelProps = React.ComponentProps<"h4"> & { as?: "h3" | "h4" | "span"; }; function MicroLabel({ as: Tag = "h4", className, children, ...props }: MicroLabelProps) { return ( {children} ); } export { MicroLabel }; export type { MicroLabelProps };