Breadcrumb

Breadcrumb shows the user's current location within a site hierarchy, allowing navigation to parent pages.


Installation

npm install @libretexts/davis-react

Basic Usage

import { Breadcrumb } from '@libretexts/davis-react';

export default function Example() {
  return (
    <Breadcrumb
      items={[
        { label: 'Home', href: '/' },
        { label: 'Products', href: '/products' },
        { label: 'Item Detail' },
      ]}
    />
  );
}

Documentation in Progress

Full documentation for this component is being written. Check back soon for complete API reference, examples, and accessibility guidelines.