Indicate the current page’s location within a navigational hierarchy that automatically adds separators via CSS. Add active prop to active Breadcrumb.Item. Do not set both active and href attributes. active overrides href and span element is rendered instead of a.

    Example

    <Breadcrumb>
      <Breadcrumb.Item href="#">Home</Breadcrumb.Item>
      <Breadcrumb.Item href="https://getbootstrap.com/docs/4.0/components/breadcrumb/">
        Library
      </Breadcrumb.Item>
      <Breadcrumb.Item active>Data</Breadcrumb.Item>
    </Breadcrumb>;
    
    Press esc to disable tab trapping

    API

    import Breadcrumb from 'react-bootstrap/Breadcrumb'
    NameTypeDefaultDescription
    as
    elementType
    <nav>

    You can use a custom element type for this component.

    label
    string
    'breadcrumb'
    listProps
    object
    {}

    Additional props passed as-is to the underlying <ul> element

    bsPrefix
    string
    'breadcrumb'

    Change the underlying component CSS base class name and modifier class names prefix. This is an escape hatch for working with heavily customized bootstrap css.

    import Breadcrumb from 'react-bootstrap/Breadcrumb'
    NameTypeDefaultDescription
    active
    boolean
    false

    Adds a visual "active" state to a Breadcrumb Item and disables the link.

    as
    elementType
    <li>

    You can use a custom element type for this component.

    href
    string

    href attribute for the inner a element

    target
    string

    target attribute for the inner a element

    title
    node

    title attribute for the inner a element

    bsPrefix
    string
    'breadcrumb-item'

    Change the underlying component CSS base class name and modifier class names prefix. This is an escape hatch for working with heavily customized bootstrap css.