1 | import { Component, CSSProperties } from "react";
|
2 | import { ColorPickerProps } from "../../..";
|
3 | import { Classes } from "reactcss";
|
4 |
|
5 | export interface AlphaPickerStylesProps {
|
6 | picker: CSSProperties;
|
7 | alpha: CSSProperties;
|
8 | }
|
9 |
|
10 | export interface AlphaPickerProps extends ColorPickerProps<AlphaPicker> {
|
11 | height?: string | undefined;
|
12 | width?: string | undefined;
|
13 | styles?: Partial<Classes<AlphaPickerStylesProps>> | undefined;
|
14 | }
|
15 |
|
16 | export default class AlphaPicker extends Component<AlphaPickerProps> { }
|