UNPKG

@arnaudpfu/react-color-picker

Version:
11 lines (10 loc) 352 B
import React from 'react'; import { ColorPickerHandler } from '../types'; import SuperColor from 'super-color'; export declare const computeAlphaValue: (e: any, container: Element | null) => number; interface AlphaProps { color: SuperColor; onChange: ColorPickerHandler; } export declare const Alpha: React.FC<AlphaProps>; export {};