feat(SW-164): Add pagination for friendship transactions

This commit is contained in:
Arvid Norlin
2024-08-13 11:33:06 +02:00
parent 2282e35a71
commit 6f293be3a7
13 changed files with 202 additions and 91 deletions

View File

@@ -0,0 +1,12 @@
import { cva } from "class-variance-authority"
import styles from "./row.module.css"
export const awardPointsVariants = cva(styles.td, {
variants: {
variant: {
addition: styles.addition,
negation: styles.negation,
},
},
})