@cerberus-design/react
Version:
The Cerberus Design React component library.
24 lines (21 loc) • 454 B
JavaScript
'use client';
import { jsx } from 'react/jsx-runtime';
import { cx } from 'styled-system/css';
import { label } from 'styled-system/recipes';
function FieldsetLabel(props) {
const { size, usage, ...nativeProps } = props;
return /* @__PURE__ */ jsx(
"label",
{
...nativeProps,
className: cx(
nativeProps.className,
label({
size,
usage
})
)
}
);
}
export { FieldsetLabel };