UNPKG

@naturacosmeticos/natds-web

Version:

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

15 lines (14 loc) 528 B
import * as React from 'react'; import { ITextFieldProps } from './TextField.props'; export { ITextFieldProps } from './TextField.props'; /** * Some props passed to the `TextField` will be forwarded to the `input`/`textarea` element. * * ## Importing * * ``` * import { TextField } from '@naturacosmeticos/natds-web'; * ``` */ export declare const TextField: React.ForwardRefExoticComponent<Pick<ITextFieldProps, string | number> & React.RefAttributes<HTMLInputElement | HTMLTextAreaElement>>; export default TextField;