Breadcrumb
Installation
import { Breadcrumb } from 'uxp/components';Signature
const Breadcrumb: React.FunctionComponent<BreadcrumbProps>Examples
tsx
const items = [
{ label: 'Home', icon: ['fas', 'home'], link: '/' },
{ label: 'Products', link: '/products' },
{ label: 'Electronics', link: '/products/electronics' },
{ label: 'Laptops', link: '/products/electronics/laptops' },
{ label: 'Gaming', link: '/products/electronics/laptops/gaming' },
];
<Breadcrumb items={items} maxItems={4} />Properties
Name
Type
Mandatory
Default Value
Example Value
Related Types
Last updated