easy-email-extensions 4.1.14 → 4.2.0
Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,11 @@
|
|
1
|
+
import { PopoverProps } from '@arco-design/web-react';
|
2
|
+
import React from 'react';
|
3
|
+
export interface ColorPickerProps extends PopoverProps {
|
4
|
+
onChange?: (val: string) => void;
|
5
|
+
value?: string;
|
6
|
+
label: string;
|
7
|
+
children?: React.ReactNode;
|
8
|
+
showInput?: boolean;
|
9
|
+
fixed?: boolean;
|
10
|
+
}
|
11
|
+
export declare function ColorPicker(props: ColorPickerProps): JSX.Element;
|
File without changes
|