fix: design review comments

This commit is contained in:
Christel Westerberg
2024-07-10 11:01:42 +02:00
parent 19bfdf67f3
commit 6b5606fc8b
7 changed files with 61 additions and 22 deletions

View File

@@ -1,5 +1,7 @@
import { useIntl } from "react-intl"
import Body from "@/components/TempDesignSystem/Text/Body"
import Row from "./Row"
import styles from "./desktop.module.css"
@@ -24,7 +26,9 @@ export default function DesktopTable({ lang, transactions }: TableProps) {
<tr>
{tableHeadings.map((heading) => (
<th key={heading} className={styles.th}>
{formatMessage({ id: heading })}
<Body textTransform="bold">
{formatMessage({ id: heading })}
</Body>
</th>
))}
</tr>