Merged in feat/SW-2851-the-doc-logo (pull request #2293)

Feat/SW-2851: Add The Dock Signature hotel logo and marker

* feat(SW-2851): Add The Doc as signature hotel

* chore(SW-2851): add logo

* chore(SW-2851): add marker


Approved-by: Erik Tiekstra
This commit is contained in:
Matilda Landström
2025-06-05 07:20:17 +00:00
parent d63e13aff5
commit f45782f423
6 changed files with 290 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ import HotelNorgeIcon from './HotelNorge'
import MarskiLogoIcon from './Marski'
import ScandicGoLogoIcon from './ScandicGoLogo'
import ScandicLogoIcon from './ScandicLogo'
import TheDockIcon from './TheDock'
type HotelLogoProps = {
hotelId: string
@@ -23,6 +24,7 @@ enum SignatureHotelEnum {
Haymarket = '890',
HotelNorge = '785',
Marski = '605',
TheDock = '796',
}
export default function HotelLogoIcon({ hotelId, hotelType }: HotelLogoProps) {
@@ -41,6 +43,8 @@ export default function HotelLogoIcon({ hotelId, hotelType }: HotelLogoProps) {
return <GrandHotelOsloLogoIcon />
case SignatureHotelEnum.Marski:
return <MarskiLogoIcon />
case SignatureHotelEnum.TheDock:
return <TheDockIcon />
default:
return <ScandicLogoIcon color="Icon/Interactive/Accent" />
}