@postenbring/hedwig-react
Version:
React components for [Hedwig Design System](https://github.com/bring/hedwig-design-system).
10 lines • 504 B
TypeScript
import { type ReactNode } from "react";
/** @deprecated Use ValidationMessageProps instead */
export interface ErrorMessageProps extends React.HTMLAttributes<HTMLDivElement> {
children: ReactNode;
id: string;
className?: string;
}
/** @deprecated Use ValidationMessage with data-color="error" instead */
export declare const ErrorMessage: import("react").ForwardRefExoticComponent<ErrorMessageProps & import("react").RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=error-message.d.ts.map