@massds/mayflower-react
Version:
React versions of Mayflower design system UI components
14 lines (13 loc) • 409 B
TypeScript
/**
* Breadcrumb module.
* @module @massds/mayflower-react/Breadcrumb
* @requires module:@massds/mayflower-assets/scss/02-molecules/breadcrumb
*/
import React from 'react';
export interface BreadcrumbProps {
/** Custom classes added to the root element. */
className?: string;
children?: React.ReactNode;
}
declare const Breadcrumb: (props: BreadcrumbProps) => any;
export default Breadcrumb;