UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

24 lines (23 loc) 540 B
export type FieldsetContextProps = { /** * Error message applied to element, */ error?: React.ReactNode; /** * Overrides internal errorId */ errorId: string; /** * Changes paddings, margins and font-sizes */ size: "medium" | "small"; /** * Sets fieldset and all form-children to disabled */ disabled: boolean; /** * Read only-state */ readOnly?: boolean; }; export declare const FieldsetContext: import("react").Context<FieldsetContextProps | null>;