Merged in feat/SW-1589-implement-booking-code-enter (pull request #1368)

Feat/SW-1589 implement booking code enter

* feat: SW-1589 Booking code rate implementation

* feat: SW-1589 Optimized price display

* feat: SW-1589 Display standard price

* feat: SW-1589 Fixed rate title issue


Approved-by: Niclas Edenvin
This commit is contained in:
Hrishikesh Vaipurkar
2025-03-05 09:32:32 +00:00
parent 43d3713f59
commit 39b6774269
17 changed files with 139 additions and 11 deletions

View File

@@ -12,6 +12,7 @@ export default function Caption({
textAlign,
textTransform,
uppercase,
striked,
type,
...props
}: CaptionProps) {
@@ -21,6 +22,7 @@ export default function Caption({
className,
textTransform,
uppercase,
striked,
type,
})
: captionVariants({
@@ -29,6 +31,7 @@ export default function Caption({
textTransform,
textAlign,
uppercase,
striked,
type,
})
return <Comp className={classNames} {...props} />