wix-style-react
Version:
wix-style-react
23 lines • 849 B
TypeScript
export default class ColorPickerConverter extends React.PureComponent<any, any, any> {
static propTypes: {
current: PropTypes.Validator<object>;
showConverter: PropTypes.Validator<boolean>;
showInput: PropTypes.Validator<boolean>;
onChange: PropTypes.Validator<(...args: any[]) => any>;
onEnter: PropTypes.Validator<(...args: any[]) => any>;
onAdd: PropTypes.Requireable<(...args: any[]) => any>;
allowEmpty: PropTypes.Requireable<boolean>;
hexPlaceholder: PropTypes.Requireable<string>;
};
constructor(props: any);
state: {
activeTab: string;
};
changeTab({ id }: {
id: any;
}): void;
render(): React.JSX.Element | null;
}
import React from 'react';
import PropTypes from 'prop-types';
//# sourceMappingURL=ColorPickerConverter.d.ts.map