Skip to main content
Default Gray Amethyst

Breadcrumb Item

<mo-breadcrumb-item> | MOBreadcrumbItem
Since 1.0 stable

Breadcrumb Items are used inside breadcrumbs to represent different links.

Modes UI Components Navigation Breadcrumb Item
<mo-breadcrumb>
  <mo-breadcrumb-item>
    <mo-icon slot="prefix" name="house"></mo-icon>
    Modes UI
  </mo-breadcrumb-item>
  <mo-breadcrumb-item>Components</mo-breadcrumb-item>
  <mo-breadcrumb-item>Navigation</mo-breadcrumb-item>
  <mo-breadcrumb-item>Breadcrumb Item</mo-breadcrumb-item>
</mo-breadcrumb>
import { MOBreadcrumb, MOBreadcrumbItem, MOIcon } from '@metsooutotec/modes-web-components/dist/react';

const App = () => (
  <MOBreadcrumb>
    <MOBreadcrumbItem>
      <mo-icon slot="prefix" name="house"></mo-icon>
      Modes UI
    </MOBreadcrumbItem>
    <MOBreadcrumbItem>Components</MOBreadcrumbItem>
    <MOBreadcrumbItem>Navigation</MOBreadcrumbItem>
    <MOBreadcrumbItem>Breadcrumb Item</MOBreadcrumbItem>
  </MOBreadcrumb>
);

Importing

If you’re using the autoloader or the traditional loader, you can ignore this section. Otherwise, feel free to use any of the following snippets to cherry pick this component.

Bundler React Script

To import this component using a bundler:

import '@metsooutotec/modes-web-components/dist/components/breadcrumb-item/breadcrumb-item.js';

To import this component as a React component:

import MOBreadcrumbItem from '@metsooutotec/modes-web-components/dist/react/breadcrumb-item/';

To import this component using a script tag:

<script type="module" src="https://modes-web.metso.com/dist/components/cdn/components/breadcrumb-item/breadcrumb-item.js"></script>

Slots

Name Description
(default) The breadcrumb item’s label.
prefix An optional prefix, usually an icon or icon button.
suffix An optional suffix, usually an icon or icon button.
separator The separator to use for the breadcrumb item. This will only change the separator for this item. If you want to change it for all items in the group, set the separator on <mo-breadcrumb> instead.

Learn more about using slots.

Properties

Name Description Reflects Type Default
href Optional URL to direct the user to when the breadcrumb item is activated. When set, a link will be rendered internally. When unset, a button will be rendered instead. string | undefined -
target Tells the browser where to open the link. Only used when href is set. '_blank' | '_parent' | '_self' | '_top' | undefined -
rel The rel attribute to use on the link. Only used when href is set. string 'noreferrer noopener'
updateComplete A read-only promise that resolves when the component has finished updating.

Learn more about attributes and properties.

Parts

Name Description
base The component’s internal wrapper.
label The breadcrumb item’s label.
prefix The container that wraps the prefix slot.
suffix The container that wraps the suffix slot.
separator The container that wraps the separator slot.

Learn more about customizing CSS parts.