mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-19 20:09:35 +00:00
32 lines
No EOL
793 B
Text
32 lines
No EOL
793 B
Text
---
|
|
components: ["Breadcrumb", "BreadcrumbItem"]
|
|
---
|
|
|
|
<script>
|
|
import {
|
|
Breadcrumb,
|
|
BreadcrumbItem,
|
|
} from "carbon-components-svelte";
|
|
import Preview from "../../components/Preview.svelte";
|
|
</script>
|
|
|
|
See the [Breadcrumbs recipe](/recipes/Breadcrumbs) for a reusable breadcrumbs component.
|
|
|
|
### Default
|
|
|
|
<Breadcrumb>
|
|
<BreadcrumbItem href="/">Dashboard</BreadcrumbItem>
|
|
<BreadcrumbItem href="/reports">Annual reports</BreadcrumbItem>
|
|
<BreadcrumbItem href="/reports/2019" isCurrentPage>2019</BreadcrumbItem>
|
|
</Breadcrumb>
|
|
|
|
### No trailing slash
|
|
|
|
<Breadcrumb noTrailingSlash>
|
|
<BreadcrumbItem href="/">Home</BreadcrumbItem>
|
|
<BreadcrumbItem href="/profile" isCurrentPage>Profile</BreadcrumbItem>
|
|
</Breadcrumb>
|
|
|
|
### Skeleton
|
|
|
|
<Breadcrumb noTrailingSlash skeleton count={3} /> |