wix-style-react
Version:
wix-style-react
18 lines • 511 B
TypeScript
export default AddColor;
declare class AddColor extends React.PureComponent<any, any, any> {
constructor(props: any);
constructor(props: any, context: any);
state: {
color: Color;
shown: boolean;
};
toggleColorPicker: () => void;
hideColorPicker: () => void;
setColor: (color: any) => void;
confirm: () => void;
cancel: () => void;
render(): React.JSX.Element;
}
import React from 'react';
import Color from 'color';
//# sourceMappingURL=AddColor.d.ts.map