@arolariu/components
Version:
🎨 70+ beautiful, accessible React components built on Base UI. TypeScript-first, CSS Modules styling, tree-shakeable, SSR-ready. Perfect for modern web apps, design systems & rapid prototyping. Zero config, maximum flexibility! ⚡
15 lines (14 loc) • 558 B
JavaScript
import { jsx } from "react/jsx-runtime";
import { cn } from "../../lib/utilities.js";
import label_module from "./label.module.js";
import * as __rspack_external_react from "react";
const Label = /*#__PURE__*/ __rspack_external_react.forwardRef(({ children, className, htmlFor, ...props }, ref)=>/*#__PURE__*/ jsx("label", {
ref: ref,
className: cn(label_module.label, className),
htmlFor: htmlFor,
...props,
children: children
}));
Label.displayName = "Label";
export { Label };
//# sourceMappingURL=label.js.map