Skip to main content
Version: 3.xx.xx
Swizzle Ready

Breadcrumb

A breadcrumb displays the current location within a hierarchy. It allows going back to states higher up in the hierarchy. <Breadcrumb> component built with Mantine Breadcrumb components using the useBreadcrumb hook.

Swizzle

You can swizzle this component to customize it with the refine CLI

Properties

<Breadcrumb> component uses the Mantine Breadcrumb component so it can be configured with the breadcrumbProps property.

localhost:3000/posts/show/123
Live previews only work with the latest documentation.
import { Show, Breadcrumb } from "@pankod/refine-mantine";

const PostShow: React.FC = () => {
return (
<Show
breadcrumb={<Breadcrumb breadcrumbProps={{ separator: "-" }} />}
>
<p>Rest of your page here</p>
</Show>
);
};

showHome

If your application has a DashboardPage, the home button is shown to the top of the hierarchy by default. If you don't want to show the home button, you can set showHome to false.

localhost:3000/posts/show/123
Live previews only work with the latest documentation.
import { Show, Breadcrumb } from "@pankod/refine-mantine";

const PostShow: React.FC = () => {
return (
<Show
breadcrumb={<Breadcrumb showHome={false} />}
>
<p>Rest of your page here</p>
</Show>
);
};

hideIcons

If you don't want to show the resource icons on the breadcrumb, you can set hideIcons to true.

localhost:3000/posts/show/123
Live previews only work with the latest documentation.
import { Show, Breadcrumb } from "@pankod/refine-mantine";

const PostShow: React.FC = () => {
return (
<Show
breadcrumb={<Breadcrumb hideIcons />}
>
<p>Rest of your page here</p>
</Show>
);
};

API Reference

Properties