@zohodesk/dot
Version:
In this Library, we Provide Some Basic Components to Build Your Application
12 lines • 337 B
JavaScript
import PropTypes from 'prop-types';
export const propTypes = {
children: PropTypes.node,
className: PropTypes.string,
dataId: PropTypes.string,
href: PropTypes.string,
rel: PropTypes.string,
target: PropTypes.oneOf(['_blank', '_self']),
title: PropTypes.string,
onClick: PropTypes.func,
customProps: PropTypes.object
};