pouncejs
Version:
A collection of UI components from Panther labs
13 lines (12 loc) • 348 B
TypeScript
import React from 'react';
import { TextProps } from '../Text';
export interface FormHelperTextProps extends TextProps {
id: string;
}
/**
* Extends `Text`
*
* A utility component that quickly allows you to add helpful messages to form fields
* */
declare const FormHelperText: React.FC<FormHelperTextProps>;
export default FormHelperText;