UNPKG

@cerberus-design/react

Version:

The Cerberus Design React component library.

14 lines (13 loc) 406 B
import { LabelVariantProps } from 'styled-system/recipes'; import { LabelProps } from './Label'; /** * This module contains the FieldsetLabel component. * @module FieldsetLabel */ export type FieldsetLabelProps = LabelProps & LabelVariantProps & { htmlFor?: string; }; /** * @deprecated */ export declare function FieldsetLabel(props: FieldsetLabelProps): import("react/jsx-runtime").JSX.Element;