UNPKG

@cerberus-design/react

Version:

The Cerberus Design React component library.

13 lines (12 loc) 483 B
import { HTMLAttributes, PropsWithChildren } from 'react'; import { LabelVariantProps } from 'styled-system/recipes'; /** * This module contains the Label component. * @module */ export type LabelBaseProps = HTMLAttributes<HTMLLabelElement>; export type LabelProps = LabelBaseProps & LabelVariantProps; /** * @deprecated Use FieldLabel or FieldParts.Label instead. */ export declare function Label(props: PropsWithChildren<LabelProps>): import("react/jsx-runtime").JSX.Element;