UNPKG

@payfit/unity-components

Version:

12 lines (11 loc) 542 B
import { TextProps } from '../../text/Text.js'; export type TanstackFormHelperTextProps = Omit<TextProps, 'variant' | 'color' | 'className'>; /** * `TanstackFormHelperText` displays non-blocking helper text for the current * TanStack form field. * * Usage: * - Place directly under an input/textarea within a `<form.AppField name="…">`. */ declare const TanstackFormHelperText: import('react').ForwardRefExoticComponent<TanstackFormHelperTextProps & import('react').RefAttributes<HTMLSpanElement>>; export { TanstackFormHelperText };