Skip to content

Commit

Permalink
docs: change breadcrumbs links for the basic usage example (#2760)
Browse files Browse the repository at this point in the history
Co-authored-by: Kyrylo Hudym-Levkovych <[email protected]>
  • Loading branch information
khudym and Kyrylo Hudym-Levkovych authored Oct 30, 2023
1 parent e71cf42 commit 0a809ed
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Breadcrumb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ Use as a secondary navigation pattern to help convey hierarchy and enable naviga
```jsx live
<Breadcrumb ariaLabel="Breadcrumb mobile view"
links={[
{ label: 'Link 1', href: '/link-1' },
{ label: 'Link 2', href: '/link-2' },
{ label: 'Link 3', href: '/link-3' },
{ label: 'Link 1', href: '#link-1' },
{ label: 'Link 2', href: '#link-2' },
{ label: 'Link 3', href: '#link-3' },
]}
isMobile
/>
Expand All @@ -56,9 +56,9 @@ Use as a secondary navigation pattern to help convey hierarchy and enable naviga
<div className="bg-dark-700 p-4">
<Breadcrumb ariaLabel="Breadcrumb inverse pallete"
links={[
{label: 'Link 1', href: '/link-1'},
{label: 'Link 2', href: '/link-2'},
{label: 'Link 3', href: '/link-3'},
{label: 'Link 1', href: '#link-1'},
{label: 'Link 2', href: '#link-2'},
{label: 'Link 3', href: '#link-3'},
]}
variant="dark"
isMobile={isExtraSmall}
Expand Down

0 comments on commit 0a809ed

Please sign in to comment.