Breadcrumb

Example

1import { Breadcrumb } from 'ui'
2import { HomeIcon } from '@heroicons/react/20/solid'
3
4const Example = () => (
5  <Breadcrumb
6    links={[
7      { label: 'Home', href: '/', IconComponent: HomeIcon },
8      { label: 'Contests', href: '/contests' },
9      { label: '2022 Round 6', href: '/contests/20' },
10      { label: 'antonve', href: '/contests/20/1' },
11    ]}
12  />
13)