fix: break out css variables

This commit is contained in:
Christel Westerberg
2024-11-18 15:30:12 +01:00
parent d5c6b6809c
commit bd0720dc0f
10 changed files with 63 additions and 50 deletions

View File

@@ -6,6 +6,14 @@ import type { SafeUser } from "@/types/user"
export type DetailsSchema = z.output<typeof guestDetailsSchema>
type MemberPrice = { price: number; currency: string }
export interface DetailsProps {
user: SafeUser
memberPrice?: MemberPrice
}
export type JoinScandicFriendsCardProps = {
name: string
memberPrice?: MemberPrice
}