feat: refactor NewDates, clean up legacy code

This reverts commit 0c7836fa59.
This commit is contained in:
Simon Emanuelsson
2025-05-03 19:33:04 +02:00
parent c6a0b4ee30
commit db289b80b1
96 changed files with 1603 additions and 1500 deletions

View File

@@ -0,0 +1,32 @@
"use client"
import {
MaterialIcon,
type MaterialIconProps,
} from "@scandic-hotels/design-system/Icons/MaterialIcon"
import { Typography } from "@scandic-hotels/design-system/Typography"
import styles from "./row.module.css"
interface RowProps {
icon: MaterialIconProps["icon"]
text: string
title: string
}
export default function Row({ icon, text, title }: RowProps) {
return (
<div className={styles.row}>
<span className={styles.title}>
<MaterialIcon icon={icon} color="Icon/Default" size={20} />
<Typography variant="Body/Paragraph/mdBold">
<p>{title}</p>
</Typography>
</span>
<div className={styles.content}>
<Typography variant="Body/Paragraph/mdRegular">
<p color="uiTextHighContrast">{text}</p>
</Typography>
</div>
</div>
)
}

View File

@@ -0,0 +1,38 @@
.row {
display: flex;
flex-direction: column;
padding: var(--Spacing-x-one-and-half) 0;
}
.row:last-child {
border-bottom: none;
}
.title {
display: flex;
flex-direction: row;
gap: var(--Spacing-x1);
}
.title svg {
height: 24px;
width: 24px;
}
.content {
padding-left: var(--Spacing-x4);
}
@media (min-width: 768px) {
.row {
align-items: center;
border-bottom: 1px solid var(--Base-Border-Subtle);
flex-direction: row;
justify-content: space-between;
}
.title svg {
height: 20px;
width: 20px;
}
}