UNPKG

@onesy/ui-react

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