@ntragas/pouncejstest
Version:
A collection of UI components from Panther labs
11 lines (10 loc) • 299 B
TypeScript
import React from 'react';
import { TextProps } from '../Text';
export declare type FormErrorProps = TextProps;
/**
* Extends Box
*
* A utility component that quickly allows you to add error messages to form fields
*/
declare const FormError: React.FC<FormErrorProps>;
export default FormError;