Merged in feat/SW-1504-UI-update-breakfast-component (pull request #1284)

feat(SW-1504): Used AncillaryCard and added to breakfast choice

* feat(SW-1504): Craeted AncillaryCard and added to breakfast choice

* feat(SW-1504): Using of AncillaryCard

* feat(SW-1504) Removed unused imports

* feat(SW-1504): Added price text

* feat(SW-1504): added /night per adult

* feat(SW-1504) Removed type prop


Approved-by: Arvid Norlin
This commit is contained in:
Pontus Dreij
2025-02-14 15:43:14 +00:00
parent 21d06e2d84
commit ed9dbded5d
12 changed files with 93 additions and 48 deletions

View File

@@ -6,8 +6,16 @@ export interface AncillaryCardProps {
price: {
total: number
currency: string
text?: string
included?: boolean
}
points?: number
description?: string
}
}
export interface BreakfastChoiceCardProps extends AncillaryCardProps {
name: string
id?: string
value: string
}