@intersect.mbo/govtool-delegation-pillar
Version:
Delegation Pillar of the GovTool project
8 lines (7 loc) • 322 B
TypeScript
import type { TypographyProps } from '../Typography';
export type FormErrorMessageProps = {
dataTestId?: string;
errorMessage?: string;
sx?: TypographyProps;
};
export declare const FormErrorMessage: ({ dataTestId, errorMessage, sx, }: FormErrorMessageProps) => import("react/jsx-runtime").JSX.Element | null;