BridgeBeta
  • Brand
  • Digital Assets
    Foundations
    Icons
    Components
    Templates
  • Resources
    Design Tokens
    How-tos
    Best Practices
    Libraries
    Accessibility
    Products List
  • Support
    • Overview
    • Actions
      • Overview
      • Button
      • ContextMenu
      • Link
    • Controls
      • Overview
      • Checkbox
      • Tag
      • Toggle
    • Forms
      • Overview
      • DatePicker
      • FileUploader
      • Input
      • NumberInput
      • RadioButton
      • Search
      • Select
      • Slider
      • TextArea
      • TextInput
    • Hooks
      • useIsomorphicLayoutEffect
      • useMediaQuery
      • useSettings
    • Navigation
      • Overview
      • AnchorNavigation
      • BannerNavigation
      • Breadcrumb
      • Footer
      • InfoBar
      • MainNavigation
      • SecondaryNavigation
      • StepNavigation
      • SubNavigation
    • Overlay
      • Overview
      • Credits
      • Modal
      • ModalWrapper
      • Notification
      • Tooltip
    • Structure
      • Overview
      • Accordion
      • AuthLayout
      • Avatar
      • Callout
      • Card
      • ContentSwitcher
      • Empty
      • Hero
      • InlineLoading
      • Item
      • List
      • Loading
      • mdxComponents
      • Module
      • Pagination
      • ReadMore
      • Story
      • Table
      • Tabs
      • Text
      • Unit
      • User
      • WFPCoreProvider
      • Wrapper
Components
Navigation
Breadcrumb

Breadcrumb

  • Design
  • Code
  • Props

Breadcrumb

Editable Example

import { Breadcrumb } from "@wfp/react";

() => {
  return <Breadcrumb className="custom-class" />;
};

PropDefaultDescriptionValue

children

React.ReactNode
–

Recommended to use BreadcrumbItem as the direct children for structured navigation.

className

string
–

The CSS class name to be placed on the wrapping element.

BreadcrumbItem

Expand code

Editable Example

import {
  Breadcrumb,
  BreadcrumbItem,
} from "@wfp/react";

() => {
  return (
    <BreadcrumbItem
      className="custom-class"
      href="https://www.designsystem.wfp.org/"
    />
  );
};

PropDefaultDescriptionValue

href

string
–

Specify an link for the BreadcrumbItem

children

React.ReactNode
–

The content to be rendered inside the component. This can be:

  • A string, in which case you must also provide the href prop to define a link
  • An <a> tag, allowing you to pass a fully defined anchor element

Use this prop to specify the elements or text to display within the component

disableLink

boolean
–

Specify BreadcrumbItem to be interactive/enabled or non-interactive/disabled

className

string
–

The CSS class name to be placed on the wrapping element

BreadcrumbHome

Expand code

Editable Example

import {
  Breadcrumb,
  BreadcrumbHome,
} from "@wfp/react";

() => {
  return (
    <BreadcrumbHome
      className="custom-class"
      hometext="Text for the Home Icon"
    />
  );
};

PropDefaultDescriptionValue

hometext

ReactNode
–

Specify an optional text for the Home Icon

className

string
–

Specify an optional className to be added to the Home Icon

On this page

  • Breadcrumb
  • BreadcrumbItem
  • BreadcrumbHome

References

  • Storybook
Storybook
Figma library
Contact us
2025 © World Food Programme