fix(SW-695): use small chevron icon

This commit is contained in:
Chuma McPhoy
2024-11-05 10:45:18 +01:00
parent 1774248e94
commit 461cabab22
2 changed files with 4 additions and 13 deletions

View File

@@ -19,6 +19,7 @@
.listItem { .listItem {
align-items: center; align-items: center;
display: flex; display: flex;
gap: var(--Spacing-x-quarter);
} }
.homeLink { .homeLink {

View File

@@ -1,6 +1,6 @@
import { serverClient } from "@/lib/trpc/server" import { serverClient } from "@/lib/trpc/server"
import { ChevronRightIcon, HouseIcon } from "@/components/Icons" import { ChevronRightSmallIcon,HouseIcon } from "@/components/Icons"
import Link from "@/components/TempDesignSystem/Link" import Link from "@/components/TempDesignSystem/Link"
import Footnote from "@/components/TempDesignSystem/Text/Footnote" import Footnote from "@/components/TempDesignSystem/Text/Footnote"
@@ -26,12 +26,7 @@ export default async function Breadcrumbs() {
> >
<HouseIcon width={16} height={16} color="peach80" /> <HouseIcon width={16} height={16} color="peach80" />
</Link> </Link>
<ChevronRightIcon <ChevronRightSmallIcon aria-hidden="true" color="peach80" />
width={16}
height={16}
aria-hidden="true"
color="peach80"
/>
</li> </li>
) : null} ) : null}
@@ -46,12 +41,7 @@ export default async function Breadcrumbs() {
> >
{breadcrumb.title} {breadcrumb.title}
</Link> </Link>
<ChevronRightIcon <ChevronRightSmallIcon aria-hidden="true" color="peach80" />
width={16}
height={16}
aria-hidden="true"
color="peach80"
/>
</li> </li>
) )
} }