Fix/SW-1128/SW-1124 side peek and gallery * fix(SW-1128): updated style and mobile design for sidepeek select hotel * fix(SW-1128): update link sidepeek * fix(SW-1124): fix padding gallery * fix(SW-1128): fix sidepeek mobile design * fix(SW-1128): fix mobile design * fix(SW-1128): fix gallery icon caption Approved-by: Niclas Edenvin
23 lines
694 B
TypeScript
23 lines
694 B
TypeScript
import { useIntl } from "react-intl"
|
|
|
|
import AccordionItem from "@/components/TempDesignSystem/Accordion/AccordionItem"
|
|
import Body from "@/components/TempDesignSystem/Text/Body"
|
|
|
|
import { MeetingsAndConferencesProps } from "@/types/components/hotelReservation/selectHotel/selectHotel"
|
|
import { IconName } from "@/types/components/icon"
|
|
|
|
export default function MeetingsAndConferences({
|
|
meetingDescription,
|
|
}: MeetingsAndConferencesProps) {
|
|
const intl = useIntl()
|
|
return (
|
|
<AccordionItem
|
|
title={intl.formatMessage({ id: "Meetings & Conferences" })}
|
|
icon={IconName.Business}
|
|
variant="sidepeek"
|
|
>
|
|
<Body>{meetingDescription}</Body>
|
|
</AccordionItem>
|
|
)
|
|
}
|