UNPKG

@arco-design/web-react

Version:

Arco Design React UI Library.

11 lines (10 loc) 355 B
import { Color, HSV } from './interface'; interface InputRgbProps { color: Color; alpha: number; onHsvChange: (value: HSV) => void; onAlphaChange: (value: number) => void; disabledAlpha?: boolean; } export declare const InputRgb: ({ color, alpha, onHsvChange, onAlphaChange, disabledAlpha, }: InputRgbProps) => JSX.Element; export {};