Skip to main content
Version: 1.0.2

Breadcrumbs

Overview

Breadcrumbs provide users with a way to navigate back to previous pages or sections in a hierarchical structure. They help users understand their current location within the website and provide quick access to parent pages.

Preview

Installation

npx @mindfiredigital/ignix-ui add breadcrumbs

Usage

Import the component:

import { Breadcrumbs } from './components/ui';

Basic Usage

function BasicBreadcrumb() {
return (
<Breadcrumbs
items={[
{ label: 'Home', href: '/' },
{ label: 'Products', href: '/products' },
{ label: 'Current Page' }
]}
/>
);
}

Variants