@naturacosmeticos/natds-react
Version:
A collection of components from Natura Design System for React
8 lines (7 loc) • 443 B
TypeScript
import { Theme } from '@naturacosmeticos/natds-themes';
import { InputProps } from './Input.props';
declare type InputStyleProps = Pick<InputProps, 'feedback' | 'disabled' | 'readOnly' | 'size' | 'action' | 'isResizable' | 'brand'>;
declare const styles: (data?: (InputStyleProps & {
theme?: Theme | undefined;
}) | undefined) => import("jss").Classes<"input" | "base" | "wrapper" | "leadinContainer" | "textArea">;
export default styles;