import { Component, CSSProperties } from "react"; import { ColorPickerProps } from "../../.."; import { Classes } from "reactcss"; export interface AlphaPickerStylesProps { picker: CSSProperties; alpha: CSSProperties; } export interface AlphaPickerProps extends ColorPickerProps { height?: string | undefined; width?: string | undefined; styles?: Partial> | undefined; } export default class AlphaPicker extends Component { }