From 76184843d8f4e8f8c8a64fc079f9deb1da72348c Mon Sep 17 00:00:00 2001 From: bri Date: Wed, 17 May 2023 22:47:29 -0400 Subject: [PATCH 1/2] chore: update next/font/google font list --- packages/font/src/google/font-data.json | 65 ++++++++++++++++- packages/font/src/google/index.ts | 93 ++++++++++++++++++++++++- 2 files changed, 156 insertions(+), 2 deletions(-) diff --git a/packages/font/src/google/font-data.json b/packages/font/src/google/font-data.json index a1d834e69a644..85aa678d1f35c 100644 --- a/packages/font/src/google/font-data.json +++ b/packages/font/src/google/font-data.json @@ -4652,6 +4652,25 @@ "styles": ["normal"], "subsets": ["latin", "latin-ext", "vietnamese"] }, + "Instrument Sans": { + "weights": ["400", "500", "600", "700", "variable"], + "styles": ["normal", "italic"], + "axes": [ + { + "tag": "wdth", + "min": 75, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext"] + }, "Instrument Serif": { "weights": ["400"], "styles": ["normal", "italic"], @@ -7932,6 +7951,24 @@ "styles": ["normal"], "subsets": ["nabataean"] }, + "Noto Sans Nag Mundari": { + "weights": ["400", "500", "600", "700", "variable"], + "styles": ["normal"], + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 700, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext", "nag-mundari"] + }, + "Noto Sans Nandinagari": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext", "nandinagari"] + }, "Noto Sans New Tai Lue": { "weights": ["400", "500", "600", "700", "variable"], "styles": ["normal"], @@ -10084,7 +10121,7 @@ "defaultValue": 400 } ], - "subsets": ["latin", "latin-ext", "vietnamese"] + "subsets": ["canadian-aboriginal", "latin", "latin-ext", "vietnamese"] }, "Radley": { "weights": ["400"], @@ -12630,6 +12667,32 @@ "styles": ["normal"], "subsets": ["latin"] }, + "Wix Madefor Display": { + "weights": ["400", "500", "600", "700", "800", "variable"], + "styles": ["normal"], + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "subsets": ["cyrillic", "cyrillic-ext", "latin", "latin-ext", "vietnamese"] + }, + "Wix Madefor Text": { + "weights": ["400", "500", "600", "700", "800", "variable"], + "styles": ["normal", "italic"], + "axes": [ + { + "tag": "wght", + "min": 400, + "max": 800, + "defaultValue": 400 + } + ], + "subsets": ["cyrillic", "cyrillic-ext", "latin", "latin-ext", "vietnamese"] + }, "Work Sans": { "weights": [ "100", diff --git a/packages/font/src/google/index.ts b/packages/font/src/google/index.ts index daf5e508af284..3985cf7c06b66 100644 --- a/packages/font/src/google/index.ts +++ b/packages/font/src/google/index.ts @@ -8541,6 +8541,25 @@ export declare function Inspiration< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Instrument_Sans< + T extends CssVariable | undefined = undefined +>(options?: { + weight?: + | '400' + | '500' + | '600' + | '700' + | 'variable' + | Array<'400' | '500' | '600' | '700'> + style?: 'normal' | 'italic' | Array<'normal' | 'italic'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext'> + axes?: 'wdth'[] +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Instrument_Serif< T extends CssVariable | undefined = undefined >(options: { @@ -14247,6 +14266,36 @@ export declare function Noto_Sans_Nabataean< adjustFontFallback?: boolean subsets?: Array<'nabataean'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Noto_Sans_Nag_Mundari< + T extends CssVariable | undefined = undefined +>(options?: { + weight?: + | '400' + | '500' + | '600' + | '700' + | 'variable' + | Array<'400' | '500' | '600' | '700'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext' | 'nag-mundari'> +}): T extends undefined ? NextFont : NextFontWithVariable +export declare function Noto_Sans_Nandinagari< + T extends CssVariable | undefined = undefined +>(options: { + weight: '400' | Array<'400'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext' | 'nandinagari'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Noto_Sans_New_Tai_Lue< T extends CssVariable | undefined = undefined >(options?: { @@ -17700,7 +17749,7 @@ export declare function Radio_Canada< preload?: boolean fallback?: string[] adjustFontFallback?: boolean - subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'> + subsets?: Array<'canadian-aboriginal' | 'latin' | 'latin-ext' | 'vietnamese'> axes?: 'wdth'[] }): T extends undefined ? NextFont : NextFontWithVariable export declare function Radley< @@ -22309,6 +22358,48 @@ export declare function Wire_One< adjustFontFallback?: boolean subsets?: Array<'latin'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Wix_Madefor_Display< + T extends CssVariable | undefined = undefined +>(options?: { + weight?: + | '400' + | '500' + | '600' + | '700' + | '800' + | 'variable' + | Array<'400' | '500' | '600' | '700' | '800'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array< + 'cyrillic' | 'cyrillic-ext' | 'latin' | 'latin-ext' | 'vietnamese' + > +}): T extends undefined ? NextFont : NextFontWithVariable +export declare function Wix_Madefor_Text< + T extends CssVariable | undefined = undefined +>(options?: { + weight?: + | '400' + | '500' + | '600' + | '700' + | '800' + | 'variable' + | Array<'400' | '500' | '600' | '700' | '800'> + style?: 'normal' | 'italic' | Array<'normal' | 'italic'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array< + 'cyrillic' | 'cyrillic-ext' | 'latin' | 'latin-ext' | 'vietnamese' + > +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Work_Sans< T extends CssVariable | undefined = undefined >(options?: { From 9df6cd98f0e7d6c2e0cacc325e49fa37ecdfadb3 Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Wed, 14 Jun 2023 13:36:53 -0700 Subject: [PATCH 2/2] update again --- packages/font/src/google/font-data.json | 186 ++++++++++++++--- packages/font/src/google/index.ts | 260 ++++++++++++++++++------ 2 files changed, 348 insertions(+), 98 deletions(-) diff --git a/packages/font/src/google/font-data.json b/packages/font/src/google/font-data.json index b2b16f8c569e2..2defc776632ea 100644 --- a/packages/font/src/google/font-data.json +++ b/packages/font/src/google/font-data.json @@ -1179,6 +1179,11 @@ "styles": ["normal"], "subsets": ["cyrillic", "latin"] }, + "Bagel Fat One": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext"] + }, "Bahiana": { "weights": ["400"], "styles": ["normal"], @@ -2376,11 +2381,6 @@ "styles": ["normal"], "subsets": ["latin", "latin-ext"] }, - "Coda Caption": { - "weights": ["800"], - "styles": ["normal"], - "subsets": ["latin", "latin-ext"] - }, "Codystar": { "weights": ["300", "400"], "styles": ["normal"], @@ -2751,8 +2751,16 @@ "subsets": ["khmer", "latin"] }, "Darker Grotesque": { - "weights": ["300", "400", "500", "600", "700", "800", "900"], + "weights": ["300", "400", "500", "600", "700", "800", "900", "variable"], "styles": ["normal"], + "axes": [ + { + "tag": "wght", + "min": 300, + "max": 900, + "defaultValue": 400 + } + ], "subsets": ["latin", "latin-ext", "vietnamese"] }, "Darumadrop One": { @@ -2837,6 +2845,11 @@ "latin-ext" ] }, + "Diphylleia": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext"] + }, "Diplomata": { "weights": ["400"], "styles": ["normal"], @@ -3794,6 +3807,11 @@ ], "subsets": ["latin", "latin-ext"] }, + "Gasoek One": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext"] + }, "Gayathri": { "weights": ["100", "400", "700"], "styles": ["normal"], @@ -3872,6 +3890,55 @@ "styles": ["normal", "italic"], "subsets": ["latin"] }, + "Geologica": { + "weights": [ + "100", + "200", + "300", + "400", + "500", + "600", + "700", + "800", + "900", + "variable" + ], + "styles": ["normal"], + "axes": [ + { + "tag": "CRSV", + "min": 0, + "max": 1, + "defaultValue": 0 + }, + { + "tag": "SHRP", + "min": 0, + "max": 100, + "defaultValue": 0 + }, + { + "tag": "slnt", + "min": -12, + "max": 0, + "defaultValue": 0 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "subsets": [ + "cyrillic", + "cyrillic-ext", + "greek", + "latin", + "latin-ext", + "vietnamese" + ] + }, "Georama": { "weights": [ "100", @@ -4083,6 +4150,11 @@ "styles": ["normal"], "subsets": ["latin", "latin-ext"] }, + "Grandiflora One": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext"] + }, "Grandstander": { "weights": [ "100", @@ -4983,6 +5055,19 @@ "styles": ["normal", "italic"], "subsets": ["latin", "latin-ext", "thai", "vietnamese"] }, + "Kablammo": { + "weights": ["400", "variable"], + "styles": ["normal"], + "axes": [ + { + "tag": "MORF", + "min": 0, + "max": 60, + "defaultValue": 0 + } + ], + "subsets": ["cyrillic", "cyrillic-ext", "latin", "latin-ext", "vietnamese"] + }, "Kadwa": { "weights": ["400", "700"], "styles": ["normal"], @@ -6334,7 +6419,7 @@ "Michroma": { "weights": ["400"], "styles": ["normal"], - "subsets": ["latin"] + "subsets": ["latin", "latin-ext"] }, "Milonga": { "weights": ["400"], @@ -6424,6 +6509,11 @@ ], "subsets": ["latin", "latin-ext"] }, + "Moirai One": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext"] + }, "Molengo": { "weights": ["400"], "styles": ["normal"], @@ -8553,8 +8643,33 @@ "subsets": ["latin", "latin-ext", "zanabazar-square"] }, "Noto Serif": { - "weights": ["400", "700"], + "weights": [ + "100", + "200", + "300", + "400", + "500", + "600", + "700", + "800", + "900", + "variable" + ], "styles": ["normal", "italic"], + "axes": [ + { + "tag": "wdth", + "min": 62.5, + "max": 100, + "defaultValue": 100 + }, + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], "subsets": [ "cyrillic", "cyrillic-ext", @@ -9435,6 +9550,11 @@ "styles": ["normal"], "subsets": ["cyrillic", "cyrillic-ext", "latin", "latin-ext"] }, + "Orbit": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext"] + }, "Orbitron": { "weights": ["400", "500", "600", "700", "800", "900", "variable"], "styles": ["normal"], @@ -9640,6 +9760,11 @@ "styles": ["normal"], "subsets": ["devanagari", "latin", "latin-ext"] }, + "Palette Mosaic": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin"] + }, "Pangolin": { "weights": ["400"], "styles": ["normal"], @@ -10738,6 +10863,11 @@ "styles": ["normal"], "subsets": ["latin"] }, + "Rock 3D": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin"] + }, "Rock Salt": { "weights": ["400"], "styles": ["normal"], @@ -11298,6 +11428,11 @@ "styles": ["normal"], "subsets": ["latin", "latin-ext"] }, + "Shizuru": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin"] + }, "Shojumaru": { "weights": ["400"], "styles": ["normal"], @@ -11706,19 +11841,6 @@ "vietnamese" ] }, - "Source Sans Pro": { - "weights": ["200", "300", "400", "600", "700", "900"], - "styles": ["normal", "italic"], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "greek-ext", - "latin", - "latin-ext", - "vietnamese" - ] - }, "Source Serif 4": { "weights": [ "200", @@ -11755,18 +11877,6 @@ "vietnamese" ] }, - "Source Serif Pro": { - "weights": ["200", "300", "400", "600", "700", "900"], - "styles": ["normal", "italic"], - "subsets": [ - "cyrillic", - "cyrillic-ext", - "greek", - "latin", - "latin-ext", - "vietnamese" - ] - }, "Space Grotesk": { "weights": ["300", "400", "500", "600", "700", "variable"], "styles": ["normal"], @@ -12920,6 +13030,16 @@ "styles": ["normal"], "subsets": ["cyrillic", "latin", "latin-ext"] }, + "Yuji Hentaigana Akari": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext"] + }, + "Yuji Hentaigana Akebono": { + "weights": ["400"], + "styles": ["normal"], + "subsets": ["latin", "latin-ext"] + }, "Yuji Mai": { "weights": ["400"], "styles": ["normal"], diff --git a/packages/font/src/google/index.ts b/packages/font/src/google/index.ts index 98c84b834acfc..58e3f3def1a04 100644 --- a/packages/font/src/google/index.ts +++ b/packages/font/src/google/index.ts @@ -1934,6 +1934,18 @@ export declare function Bad_Script< adjustFontFallback?: boolean subsets?: Array<'cyrillic' | 'latin'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Bagel_Fat_One< + T extends CssVariable | undefined = undefined +>(options: { + weight: '400' | Array<'400'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Bahiana< T extends CssVariable | undefined = undefined >(options: { @@ -4189,18 +4201,6 @@ export declare function Coda< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable -export declare function Coda_Caption< - T extends CssVariable | undefined = undefined ->(options: { - weight: '800' | Array<'800'> - style?: 'normal' | Array<'normal'> - display?: Display - variable?: T - preload?: boolean - fallback?: string[] - adjustFontFallback?: boolean - subsets?: Array<'latin' | 'latin-ext'> -}): T extends undefined ? NextFont : NextFontWithVariable export declare function Codystar< T extends CssVariable | undefined = undefined >(options: { @@ -4897,8 +4897,8 @@ export declare function Dangrek< }): T extends undefined ? NextFont : NextFontWithVariable export declare function Darker_Grotesque< T extends CssVariable | undefined = undefined ->(options: { - weight: +>(options?: { + weight?: | '300' | '400' | '500' @@ -4906,6 +4906,7 @@ export declare function Darker_Grotesque< | '700' | '800' | '900' + | 'variable' | Array<'300' | '400' | '500' | '600' | '700' | '800' | '900'> style?: 'normal' | Array<'normal'> display?: Display @@ -5097,6 +5098,18 @@ export declare function Didact_Gothic< 'cyrillic' | 'cyrillic-ext' | 'greek' | 'greek-ext' | 'latin' | 'latin-ext' > }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Diphylleia< + T extends CssVariable | undefined = undefined +>(options: { + weight: '400' | Array<'400'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Diplomata< T extends CssVariable | undefined = undefined >(options: { @@ -6826,6 +6839,18 @@ export declare function Gantari< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Gasoek_One< + T extends CssVariable | undefined = undefined +>(options: { + weight: '400' | Array<'400'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Gayathri< T extends CssVariable | undefined = undefined >(options: { @@ -6948,6 +6973,34 @@ export declare function Geo< adjustFontFallback?: boolean subsets?: Array<'latin'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Geologica< + T extends CssVariable | undefined = undefined +>(options?: { + weight?: + | '100' + | '200' + | '300' + | '400' + | '500' + | '600' + | '700' + | '800' + | '900' + | 'variable' + | Array< + '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900' + > + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array< + 'cyrillic' | 'cyrillic-ext' | 'greek' | 'latin' | 'latin-ext' | 'vietnamese' + > + axes?: ('CRSV' | 'SHRP' | 'slnt')[] +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Georama< T extends CssVariable | undefined = undefined >(options?: { @@ -7330,6 +7383,18 @@ export declare function Grand_Hotel< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Grandiflora_One< + T extends CssVariable | undefined = undefined +>(options: { + weight: '400' | Array<'400'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Grandstander< T extends CssVariable | undefined = undefined >(options?: { @@ -9091,6 +9156,21 @@ export declare function K2D< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext' | 'thai' | 'vietnamese'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Kablammo< + T extends CssVariable | undefined = undefined +>(options?: { + weight?: '400' | 'variable' | Array<'400'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array< + 'cyrillic' | 'cyrillic-ext' | 'latin' | 'latin-ext' | 'vietnamese' + > + axes?: 'MORF'[] +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Kadwa< T extends CssVariable | undefined = undefined >(options: { @@ -11623,7 +11703,7 @@ export declare function Michroma< preload?: boolean fallback?: string[] adjustFontFallback?: boolean - subsets?: Array<'latin'> + subsets?: Array<'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable export declare function Milonga< T extends CssVariable | undefined = undefined @@ -11831,6 +11911,18 @@ export declare function Mohave< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Moirai_One< + T extends CssVariable | undefined = undefined +>(options: { + weight: '400' | Array<'400'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Molengo< T extends CssVariable | undefined = undefined >(options: { @@ -15275,8 +15367,21 @@ export declare function Noto_Sans_Zanabazar_Square< }): T extends undefined ? NextFont : NextFontWithVariable export declare function Noto_Serif< T extends CssVariable | undefined = undefined ->(options: { - weight: '400' | '700' | Array<'400' | '700'> +>(options?: { + weight?: + | '100' + | '200' + | '300' + | '400' + | '500' + | '600' + | '700' + | '800' + | '900' + | 'variable' + | Array< + '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900' + > style?: 'normal' | 'italic' | Array<'normal' | 'italic'> display?: Display variable?: T @@ -15292,6 +15397,7 @@ export declare function Noto_Serif< | 'latin-ext' | 'vietnamese' > + axes?: 'wdth'[] }): T extends undefined ? NextFont : NextFontWithVariable export declare function Noto_Serif_Ahom< T extends CssVariable | undefined = undefined @@ -16405,6 +16511,18 @@ export declare function Oranienbaum< adjustFontFallback?: boolean subsets?: Array<'cyrillic' | 'cyrillic-ext' | 'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Orbit< + T extends CssVariable | undefined = undefined +>(options: { + weight: '400' | Array<'400'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Orbitron< T extends CssVariable | undefined = undefined >(options?: { @@ -16803,6 +16921,18 @@ export declare function Palanquin_Dark< adjustFontFallback?: boolean subsets?: Array<'devanagari' | 'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Palette_Mosaic< + T extends CssVariable | undefined = undefined +>(options: { + weight: '400' | Array<'400'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Pangolin< T extends CssVariable | undefined = undefined >(options: { @@ -18572,6 +18702,18 @@ export declare function Rochester< adjustFontFallback?: boolean subsets?: Array<'latin'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Rock_3D< + T extends CssVariable | undefined = undefined +>(options: { + weight: '400' | Array<'400'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Rock_Salt< T extends CssVariable | undefined = undefined >(options: { @@ -19807,6 +19949,18 @@ export declare function Shippori_Mincho_B1< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Shizuru< + T extends CssVariable | undefined = undefined +>(options: { + weight: '400' | Array<'400'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Shojumaru< T extends CssVariable | undefined = undefined >(options: { @@ -20487,33 +20641,6 @@ export declare function Source_Sans_3< | 'vietnamese' > }): T extends undefined ? NextFont : NextFontWithVariable -export declare function Source_Sans_Pro< - T extends CssVariable | undefined = undefined ->(options: { - weight: - | '200' - | '300' - | '400' - | '600' - | '700' - | '900' - | Array<'200' | '300' | '400' | '600' | '700' | '900'> - style?: 'normal' | 'italic' | Array<'normal' | 'italic'> - display?: Display - variable?: T - preload?: boolean - fallback?: string[] - adjustFontFallback?: boolean - subsets?: Array< - | 'cyrillic' - | 'cyrillic-ext' - | 'greek' - | 'greek-ext' - | 'latin' - | 'latin-ext' - | 'vietnamese' - > -}): T extends undefined ? NextFont : NextFontWithVariable export declare function Source_Serif_4< T extends CssVariable | undefined = undefined >(options?: { @@ -20539,27 +20666,6 @@ export declare function Source_Serif_4< > axes?: 'opsz'[] }): T extends undefined ? NextFont : NextFontWithVariable -export declare function Source_Serif_Pro< - T extends CssVariable | undefined = undefined ->(options: { - weight: - | '200' - | '300' - | '400' - | '600' - | '700' - | '900' - | Array<'200' | '300' | '400' | '600' | '700' | '900'> - style?: 'normal' | 'italic' | Array<'normal' | 'italic'> - display?: Display - variable?: T - preload?: boolean - fallback?: string[] - adjustFontFallback?: boolean - subsets?: Array< - 'cyrillic' | 'cyrillic-ext' | 'greek' | 'latin' | 'latin-ext' | 'vietnamese' - > -}): T extends undefined ? NextFont : NextFontWithVariable export declare function Space_Grotesk< T extends CssVariable | undefined = undefined >(options?: { @@ -22763,6 +22869,30 @@ export declare function Yuji_Boku< adjustFontFallback?: boolean subsets?: Array<'cyrillic' | 'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Yuji_Hentaigana_Akari< + T extends CssVariable | undefined = undefined +>(options: { + weight: '400' | Array<'400'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext'> +}): T extends undefined ? NextFont : NextFontWithVariable +export declare function Yuji_Hentaigana_Akebono< + T extends CssVariable | undefined = undefined +>(options: { + weight: '400' | Array<'400'> + style?: 'normal' | Array<'normal'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Yuji_Mai< T extends CssVariable | undefined = undefined >(options: {