@zohodesk/dot
Version:
In this Library, we Provide Some Basic Components to Build Your Application
13 lines • 408 B
JavaScript
import PropTypes from 'prop-types';
export const propTypes = {
customClass: PropTypes.string,
href: PropTypes.string,
message: PropTypes.string,
onClick: PropTypes.func,
onClose: PropTypes.func,
palette: PropTypes.oneOf(['default', 'blue', 'white']),
type: PropTypes.oneOf(['primary', 'secondary']),
urlText: PropTypes.string,
dataId: PropTypes.string,
dataSelectorId: PropTypes.string
};