UNPKG

@naturacosmeticos/natds-react

Version:
19 lines (18 loc) 481 B
import { BrandTypes } from '../../brandTypes/brandTypes'; import { InputProps } from '../Input'; declare type BaseProps = InputProps & { /** * Specify an optional className to be added to your TextField */ className?: string; /** * Specify an optional className to be added to your TextField */ brand?: BrandTypes; /** * Optional ID for testing */ testID?: string; }; export declare type TextFieldProps = BaseProps; export {};