mirror of
https://github.com/better-auth/better-auth.git
synced 2026-07-16 14:23:23 -05:00
20 lines
417 B
TypeScript
20 lines
417 B
TypeScript
import { GeistPixelSquare } from "geist/font/pixel";
|
|
import { Geist, Geist_Mono } from "next/font/google";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const fontSans = Geist({
|
|
subsets: ["latin"],
|
|
variable: "--font-geist-sans",
|
|
});
|
|
|
|
const fontMono = Geist_Mono({
|
|
subsets: ["latin"],
|
|
variable: "--font-geist-mono",
|
|
});
|
|
|
|
export const fontVariables = cn(
|
|
fontSans.variable,
|
|
fontMono.variable,
|
|
GeistPixelSquare.variable,
|
|
);
|