Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | /**
* Breadcrumbs allow users to make selections from a range of values.
*
* @memberOf VISIONS
* @name Breadcrumbs
* @tag component
* @api public
* @props
* Breadcrumbs.propTypes = {
* items: PropTypes.shape({
* text: PropTypes.string.isRequired,
* action: PropTypes.func,
* isDisabled: PropTypes.bool,
* }),
* isRtl: PropTypes.bool,
*};
*/
export { default } from './Breadcrumbs';
|