# MBreadcrumb

A breadcrumb is a navigation help that displays the hierarchical path of the current page within a website or application. It helps users understand their location and allows them to navigate back to previous levels easily. Breadcrumbs improve usability and accessibility, especially in multi-level websites, dashboards, and e-commerce platforms.


## Props

| Name | Description | Type | Default |
| --- | --- | --- | --- | 
| `appearance` | Allows to define the breadcrumb appearance. | `"standard"` `"inverse"` | - |
| `links*` | Links of the breadcrumb. | `{ label: string; href: string; router?: boolean` `undefined; }[]` | - |

## Dependencies

### Depends on

- [MLink](../link)

### Graph

```mermaid
graph TD;
  MBreadcrumb --> MLink
style MBreadcrumb fill:#008240,stroke:#333,stroke-width:4px
```
