@cerberus-design/react
Version:
The Cerberus Design React component library.
12 lines (11 loc) • 393 B
TypeScript
import { LabelVariantProps } from 'styled-system/recipes';
import { HTMLAttributes } from 'react';
/**
* This module contains the Fieldset component.
* @module Fieldset
*/
export type LegendProps = HTMLAttributes<HTMLLegendElement> & LabelVariantProps;
/**
* @deprecated use Fieldset instead
*/
export declare function Legend(props: LegendProps): import("react/jsx-runtime").JSX.Element;