fix(SW-695): smaller chevron size

This commit is contained in:
Chuma McPhoy
2024-11-05 09:26:49 +01:00
parent 43b1c309ce
commit 1774248e94

View File

@@ -26,7 +26,12 @@ export default async function Breadcrumbs() {
>
<HouseIcon width={16} height={16} color="peach80" />
</Link>
<ChevronRightIcon aria-hidden="true" color="peach80" />
<ChevronRightIcon
width={16}
height={16}
aria-hidden="true"
color="peach80"
/>
</li>
) : null}
@@ -41,7 +46,12 @@ export default async function Breadcrumbs() {
>
{breadcrumb.title}
</Link>
<ChevronRightIcon aria-hidden="true" color="peach80" />
<ChevronRightIcon
width={16}
height={16}
aria-hidden="true"
color="peach80"
/>
</li>
)
}