mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-10 16:43:31 +01:00
14 lines
274 B
TypeScript
14 lines
274 B
TypeScript
import { Inter, JetBrains_Mono } from 'next/font/google';
|
|
|
|
export const inter = Inter({
|
|
subsets: ['latin'],
|
|
display: 'swap',
|
|
variable: '--font-inter',
|
|
});
|
|
|
|
export const jetBrainsMono = JetBrains_Mono({
|
|
subsets: ['latin'],
|
|
display: 'swap',
|
|
variable: '--font-mono',
|
|
});
|