UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

27 lines (24 loc) 530 B
import { createContext } from "react"; 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 const FieldsetContext = createContext<FieldsetContextProps | null>(null);