UNPKG

@naturacosmeticos/natds-web

Version:

A collection of components from Natura Design System for React websites and webapps

13 lines (12 loc) 318 B
import * as React from 'react'; export interface IInputStateHelpTextProviderProps { children?: React.ReactNode; className?: string; disabled?: boolean; helpText?: string; id?: string; label?: string; readOnly?: boolean; required?: boolean; state: 'error' | 'success' | undefined; }