warning
Breadcrumb
Breadcrumbs are a navigation component that requires a QtmBreadcrumb container and a list of QtmBreadcrumbItem.
Sizes
You can choose between 3 additional sizes with the size property: small, medium and large. By default, breadcrumbs have medium size.
<QtmBreadcrumb size="small">
<QtmBreadcrumbItem>
<a href="#">
<QtmTypography>Home</QtmTypography>
</a>
</QtmBreadcrumbItem>
<QtmBreadcrumbItem>
<a href="#">
<QtmTypography>My cart</QtmTypography>
</a>
</QtmBreadcrumbItem>
<QtmBreadcrumbItem>
<a href="#">
<QtmTypography>Checkout</QtmTypography>
</a>
</QtmBreadcrumbItem>
</QtmBreadcrumb>
Color
By default, breadcrumbs are not emphasized (primary theme). The neutral theme is more appropriate when you need to deprioritize its focus on the screen. Set property color to change color to primary or neutral.
<QtmBreadcrumb color="neutral"> ... </QtmBreadcrumb>
Separator Option
The breadcrumbs have 2 options of separators which are “/” and “>”. By default, breadcrumbs have / separators.
You can set the separator property to > if you want to use the > separator from Material Icons.
<QtmBreadcrumb separator=">"> ... </QtmBreadcrumb>
Icon
You can use any of the Material Icons.
<QtmBreadcrumb size="small">
<QtmBreadcrumbItem>
<a href="#">
<QtmIcon icon="home"></QtmIcon>
<QtmTypography>Home</QtmTypography>
</a>
</QtmBreadcrumbItem>
...
</QtmBreadcrumb>
...
API
Breadcrumb
Loading API documentation...
BreadcrumbItem
Loading API documentation...
lightbulbSubmit an issue on GitLab