@naturacosmeticos/natds-react
Version:
A collection of components from Natura Design System for React
19 lines (18 loc) • 481 B
TypeScript
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 {};