UNPKG

@atlaskit/form

Version:

A form allows people to input information.

15 lines (14 loc) 308 B
/** * @jsxRuntime classic * @jsx jsx */ import { type ReactNode } from 'react'; export interface LegendProps { children: ReactNode; } /** * __Legend__ * * A Legend represents a caption for a fieldset in a user interface. */ export declare const Legend: ({ children }: LegendProps) => JSX.Element;