@atlaskit/form
Version:
A form allows people to input information.
15 lines (14 loc) • 308 B
TypeScript
/**
* @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;