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 {
align-items: center;
display: flex;
gap: var(--Spacing-x-quarter);
}
.homeLink {

View File

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