Feat/SW-903 breadcrumbs select hotel * feat(SW-903): break out breadcrumbs component and add on select-hotel page * feat(903): updated paths * feat(903): fix padding and remove translations * feat(903): fix type * feat(903): refactor padding * feat(903): refactor padding again * feat(903): refactor * feat(903): fix comments * feat(903): rename content breadcrumbs back Approved-by: Pontus Dreij Approved-by: Erik Tiekstra
30 lines
850 B
TypeScript
30 lines
850 B
TypeScript
import { ChevronRightIcon, HouseIcon } from "@/components/Icons"
|
|
import styles from "@/components/TempDesignSystem/Breadcrumbs/breadcrumbs.module.css"
|
|
import Footnote from "@/components/TempDesignSystem/Text/Footnote"
|
|
|
|
export default function BreadcrumbsSkeleton() {
|
|
return (
|
|
<nav className={styles.breadcrumbs}>
|
|
<ul className={styles.list}>
|
|
<li className={styles.listItem}>
|
|
<span className={styles.homeLink} color="peach80">
|
|
<HouseIcon color="peach80" />
|
|
</span>
|
|
<ChevronRightIcon
|
|
aria-hidden="true"
|
|
color="peach80"
|
|
height={20}
|
|
width={20}
|
|
/>
|
|
</li>
|
|
|
|
<li className={styles.listItem}>
|
|
<Footnote color="burgundy" type="bold">
|
|
...
|
|
</Footnote>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
)
|
|
}
|