UNPKG

@stratakit/bricks

Version:

Small, modular components for StrataKit

19 lines (18 loc) 466 B
import { jsx } from "react/jsx-runtime"; import { Role } from "@ariakit/react/role"; import { forwardRef } from "@stratakit/foundations/secret-internals"; import cx from "classnames"; const Label = forwardRef((props, forwardedRef) => { return /* @__PURE__ */ jsx( Role.label, { ...props, className: cx("\u{1F95D}-label", props.className), ref: forwardedRef } ); }); var Label_default = Label; export { Label_default as default };