@payfit/unity-components
Version:
10 lines (9 loc) • 508 B
TypeScript
/**
* FormErrorText is a component that displays error text for a form field.
* @deprecated React Hook Form components are deprecated. Use the TanStack Form version instead.
* @see Storybook docs: https://unity-components.payfit.io/?path=/docs/forms-introduction-to-unity-forms--docs
*/
declare const FormFeedbackText: import('react').ForwardRefExoticComponent<{
children?: import('react').ReactNode | undefined;
} & import('react').RefAttributes<HTMLParagraphElement>>;
export { FormFeedbackText };