ArrowBreadcrumbs Component
Documentation, preview, and source code.
Installation
1npm install motion1npm install motionUsage
1import ArrowBreadcrumbs from "../custom-components/ArrowBreadcrumbs";
2
3export default function ArrowBreadcrumbsDemo() {
4 return (
5
6 <ArrowBreadcrumbs
7 items={[
8 { label: "Home" },
9 { label: "Projects" },
10 { label: "PulseRead", active: true },
11 ]}
12 />
13
14 );
15}
161import ArrowBreadcrumbs from "../custom-components/ArrowBreadcrumbs";
2
3export default function ArrowBreadcrumbsDemo() {
4 return (
5
6 <ArrowBreadcrumbs
7 items={[
8 { label: "Home" },
9 { label: "Projects" },
10 { label: "PulseRead", active: true },
11 ]}
12 />
13
14 );
15}
16