Feat/SW-604 select hotel page UI * feat(SW-604): update header, scandic logo, and map text * feat(SW-604): fix map button * feat(SW-604): fix align header * feat(SW-604): hide filter for mobile * feat(SW-604): fix padding * feat(SW-604): fix padding again * feat(SW-604): fix mobile design * feat(SW-604): fix padding Approved-by: Pontus Dreij
34 lines
918 B
TypeScript
34 lines
918 B
TypeScript
"use client"
|
|
|
|
import useSidePeekStore from "@/stores/sidepeek"
|
|
|
|
import { ChevronRightIcon } from "@/components/Icons"
|
|
import Button from "@/components/TempDesignSystem/Button"
|
|
|
|
import styles from "./readMore.module.css"
|
|
|
|
import { ReadMoreProps } from "@/types/components/hotelReservation/selectHotel/selectHotel"
|
|
import { SidePeekEnum } from "@/types/components/hotelReservation/sidePeek"
|
|
|
|
export default function ReadMore({ label, hotelId, showCTA }: ReadMoreProps) {
|
|
const openSidePeek = useSidePeekStore((state) => state.openSidePeek)
|
|
return (
|
|
<Button
|
|
onPress={() => {
|
|
openSidePeek({ key: SidePeekEnum.hotelDetails, hotelId, showCTA })
|
|
}}
|
|
intent="text"
|
|
theme="base"
|
|
wrapping
|
|
className={styles.detailsButton}
|
|
>
|
|
{label}
|
|
<ChevronRightIcon
|
|
color="baseButtonTextOnFillNormal"
|
|
height={20}
|
|
width={20}
|
|
/>
|
|
</Button>
|
|
)
|
|
}
|