@zohodesk/dot
Version:
In this Library, we Provide Some Basic Components to Build Your Application
11 lines • 473 B
JavaScript
import PropTypes from 'prop-types';
export const propTypes = {
aligndirection: PropTypes.oneOf(['row', 'column', 'row-reverse', 'column-reverse']),
children: PropTypes.any,
palette: PropTypes.oneOf(['default', 'primary', 'secondary']),
shrink: PropTypes.bool,
type: PropTypes.oneOf(['dot', 'slash', 'arrow', 'comma', 'none']),
wrap: PropTypes.oneOf(['wrap', 'wrap-reverse', 'nowrap']),
customClass: PropTypes.object,
customSeparatorType: PropTypes.string
};