Merged in fix/BOOK-61-update-chip (pull request #3041)

fix(BOOK-61): update chip

* fix(BOOK-61): update chip

* fix(BOOK-61): revert chip changes


Approved-by: Erik Tiekstra
This commit is contained in:
Bianca Widstam
2025-10-30 13:01:34 +00:00
parent 6a342aaa9e
commit 0e598e53e8
3 changed files with 21 additions and 21 deletions

View File

@@ -6,10 +6,9 @@ import { RateEnum } from "@scandic-hotels/common/constants/rate"
import { logger } from "@scandic-hotels/common/logger"
import Body from "@scandic-hotels/design-system/Body"
import Caption from "@scandic-hotels/design-system/Caption"
import Chip from "@scandic-hotels/design-system/Chip"
import { ChipButton } from "@scandic-hotels/design-system/ChipButton"
import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon"
import Image from "@scandic-hotels/design-system/Image"
import { OldDSButton as Button } from "@scandic-hotels/design-system/OldDSButton"
import Subtitle from "@scandic-hotels/design-system/Subtitle"
import { useSelectRateContext } from "../../../../../../contexts/SelectRate/SelectRateContext"
@@ -80,19 +79,17 @@ export function SelectedRoomPanel({ roomIndex }: { roomIndex: number }) {
) : null}
{showModifyButton && (
<div className={styles.modifyButtonContainer}>
<Button clean onClick={() => setActiveRoom(roomIndex)}>
<Chip size="small" variant="uiTextHighContrast">
<MaterialIcon
size={16}
color="Icon/Inverted"
icon="edit_square"
/>
{intl.formatMessage({
id: "common.change",
defaultMessage: "Change",
})}
</Chip>
</Button>
<ChipButton
size="Medium"
onClick={() => setActiveRoom(roomIndex)}
variant="Outlined"
>
{intl.formatMessage({
id: "common.change",
defaultMessage: "Change",
})}
<MaterialIcon size={20} color="CurrentColor" icon="edit_square" />
</ChipButton>
</div>
)}
</div>