feat(SW-1988): Replaced current bed component with new design

Approved-by: Chuma Mcphoy (We Ahead)
This commit is contained in:
Erik Tiekstra
2025-03-27 14:47:50 +00:00
parent a28fa67195
commit a6cd7e6111
36 changed files with 687 additions and 329 deletions

View File

@@ -8,7 +8,7 @@
display: grid;
gap: var(--Spacing-x2);
grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
width: min(600px, 100%);
width: min(700px, 100%);
}
.iconContainer {

View File

@@ -10,7 +10,7 @@ import {
type ExtraBedTypeEnum,
} from "@/constants/booking"
import RadioCard from "@/components/TempDesignSystem/Form/ChoiceCard/Radio"
import RadioCard from "@/components/TempDesignSystem/Form/RadioCard"
import { useRoomContext } from "@/contexts/Details/Room"
import BedTypeInfo from "./BedTypeInfo"
@@ -114,8 +114,8 @@ function BedIconRenderer({
return (
<div className={`${props.className} ${styles.iconContainer}`}>
<MainBedIcon size={32} />
{ExtraBedIcon && <ExtraBedIcon size={32} />}
<MainBedIcon height={32} />
{ExtraBedIcon && <ExtraBedIcon height={32} />}
</div>
)
}