wix-style-react
Version:
wix-style-react
15 lines • 510 B
TypeScript
export default ColorPickerActions;
declare function ColorPickerActions({ onCancel, onConfirm, disabled }: {
onCancel: any;
onConfirm: any;
disabled: any;
}): React.JSX.Element;
declare namespace ColorPickerActions {
namespace propTypes {
let onCancel: PropTypes.Validator<(...args: any[]) => any>;
let onConfirm: PropTypes.Validator<(...args: any[]) => any>;
}
}
import React from 'react';
import PropTypes from 'prop-types';
//# sourceMappingURL=ColorPickerActions.d.ts.map