wix-style-react
Version:
wix-style-react
18 lines • 611 B
TypeScript
export default ColorPickerHistory;
declare function ColorPickerHistory({ show, current, previous, onClick }: {
show: any;
current: any;
previous: any;
onClick: any;
}): React.JSX.Element | null;
declare namespace ColorPickerHistory {
namespace propTypes {
let show: PropTypes.Validator<boolean>;
let previous: PropTypes.Validator<object>;
let current: PropTypes.Validator<object>;
let onClick: PropTypes.Validator<(...args: any[]) => any>;
}
}
import React from 'react';
import PropTypes from 'prop-types';
//# sourceMappingURL=ColorPickerHistory.d.ts.map