UNPKG

@onesy/ui-react

Version:
14 lines (13 loc) 453 B
import React from 'react'; import { ITextField } from '../TextField/TextField'; export declare type IColorTextField = ITextField & { name?: any; valueColor?: string; valueOpacity?: string | number; onChangeColor?: (valueNew: string) => any; onChangeOpacity?: (valueNew: string | number) => any; opacity?: boolean; WrapperProps?: any; }; declare const ColorTextField: React.FC<IColorTextField>; export default ColorTextField;