BreadCrumbs

A component to show the current path.

$ import { BreadCrumbs } from 'geist-ui-svelte';

Basic

Custom Separator

Route Shortening

Route Transforms

Normally routes come in lowercase you can change the way the name is displayed by creating a custom transform for the name. Heres a transform I wrote to capitalize the first letter of each word separated with a `-`.

Do Not Transform

There are some cases which you may not want to transform the text of certain routes. Like when the slug for a route contains characters like `-` that should not be transformed. For this you can provide the parent route of the route that you don't want to be transformed and it will not transform that route.