Files
react-test/docs/data/joy/components/breadcrumbs/BreadcrumbsWithIcon.tsx.preview

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
355 B
Plaintext
Raw Normal View History

2025-12-12 14:26:25 +09:00
<Breadcrumbs separator="" aria-label="breadcrumbs">
<Link color="primary" href="/">
<PublicIcon sx={{ mr: 0.5 }} />
United States
</Link>
{['Springfield', 'Simpson'].map((item) => (
<Link key={item} color="success" href="#usage-with-link-and-typography">
{item}
</Link>
))}
<Typography>Homer</Typography>
</Breadcrumbs>