UNPKG

react-bulma-components

Version:

React components for Bulma framework

19 lines (14 loc) 402 B
import { BulmaComponent } from '..'; import { Size } from '..'; interface BreadcrumbProps { separator?: 'arrow' | 'bullet' | 'dot' | 'succeeds'; size?: Size; align?: 'right' | 'center'; } interface BreadcrumbItemProps { active?: boolean; } declare const Breadcrumb: BulmaComponent<BreadcrumbProps, 'nav'> & { Item: BulmaComponent<BreadcrumbItemProps, 'li'>; }; export default Breadcrumb;