UNPKG

@cerberus-design/react

Version:

The Cerberus Design React component library.

25 lines (24 loc) 530 B
// src/components/deprecated/FieldsetLabel.tsx import { cx } from "styled-system/css"; import { label } from "styled-system/recipes"; import { jsx } from "react/jsx-runtime"; function FieldsetLabel(props) { const { size, usage, ...nativeProps } = props; return /* @__PURE__ */ jsx( "label", { ...nativeProps, className: cx( nativeProps.className, label({ size, usage }) ) } ); } export { FieldsetLabel }; //# sourceMappingURL=chunk-IIH4VDQA.js.map