import { cx } from "class-variance-authority" import { Typography } from "@scandic-hotels/design-system/Typography" import styles from "./row.module.css" interface RowProps { label: string value: string regularValue?: string isDiscounted?: boolean } export default function BoldRow({ label, value, regularValue, isDiscounted = false, }: RowProps) { return ( {label} {isDiscounted && regularValue ? ( {regularValue} ) : null} {value} ) }