Svelte Breadcrumb - Flowbite
Show the location of the current page in a hierarchical structure using the breadcrumb components
The breadcrumb component is an important part of any website or application that can be used to show the current location of a page in a hierarchical structure of pages.
Flowbite includes two styles of breadcrumb elements, one that has a transparent background and a few more that come with a background in different colors.
Setup #
- Svelte
<script>
import { Breadcrumb, BreadcrumbItem } from 'flowbite-svelte';
</script>
Default Breadcrumb #
Use the following breadcrumb example to show the hierarchical structure of pages.
- Svelte
<Breadcrumb aria-label="Default breadcrumb example">
<BreadcrumbItem href="/" home>Home</BreadcrumbItem>
<BreadcrumbItem href="/">Projects</BreadcrumbItem>
<BreadcrumbItem>Flowbite Svelte</BreadcrumbItem>
</Breadcrumb>
Solid Breadcrumb #
You can alternatively also use the breadcrumb components with a solid background.
- Svelte
<Breadcrumb aria-label="Solid background breadcrumb example" solid>
<BreadcrumbItem href="/" home>Home</BreadcrumbItem>
<BreadcrumbItem href="/">Projects</BreadcrumbItem>
<BreadcrumbItem>Flowbite Svelte</BreadcrumbItem>
</Breadcrumb>
Icons #
Use the icon
slot to change icons.
- Svelte
<script>
import { Breadcrumb, BreadcrumbItem } from 'flowbite-svelte';
import { Icon } from 'flowbite-svelte-icons';
</script>
<Breadcrumb aria-label="Solid background breadcrumb example" class="bg-gray-50 py-3 px-5 dark:bg-gray-900">
<BreadcrumbItem href="/" home>
<svelte:fragment slot="icon">
<Icon name="home-outline" class="w-4 h-4 mr-2" />
</svelte:fragment>Home
</BreadcrumbItem>
<BreadcrumbItem href="/">
<svelte:fragment slot="icon">
<Icon name="chevron-double-right-outline" class="w-3 h-3 mx-2 dark:text-white" />
</svelte:fragment>
Projects
</BreadcrumbItem>
<BreadcrumbItem>
<svelte:fragment slot="icon">
<Icon name="chevron-double-right-outline" class="w-3 h-3 mx-2 dark:text-white" />
</svelte:fragment>
Flowbite Svelte
</BreadcrumbItem>
</Breadcrumb>
Props #
The component has the following props, type, and default values. See types page for type information.
Breadcrumb #
- Use the
class
prop to overwrite a class in thenav
tag - Use the
classOl
prop to overwrite a class in theol
tag.
Name | Type | Default |
---|---|---|
solid | boolean | false |
navClass | string | 'flex' |
solidClass | string | 'flex px-5 py-3 text-gray-700 border border-gray-200 rounded-lg bg-gray-50 dark:bg-gray-800 dark:border-gray-700' |
olClass | string | 'inline-flex items-center space-x-1 md:space-x-3' |
BreadcrumbItem #
- Use the
class
prop to overwrite a class in theli
tag - Use the
classHome
prop to overwritehomeClass
. - Use the
classLink
prop to overwritelinkClass
. - Use the
classSpan
prop to overwritespanClass
.
Name | Type | Default |
---|---|---|
home | boolean | false |
href | string | undefined | undefined |
linkClass | string | 'ml-1 text-sm font-medium text-gray-700 hover:text-gray-900 md:ml-2 dark:text-gray-400 dark:hover:text-white' |
spanClass | string | 'ml-1 text-sm font-medium text-gray-500 md:ml-2 dark:text-gray-400' |
homeClass | string | 'inline-flex items-center text-sm font-medium text-gray-700 hover:text-gray-900 dark:text-gray-400 dark:hover:text-white' |