diff --git a/packages/font/src/google/font-data.json b/packages/font/src/google/font-data.json index cbe5b510a01d1..88e4384d439ff 100644 --- a/packages/font/src/google/font-data.json +++ b/packages/font/src/google/font-data.json @@ -4695,6 +4695,30 @@ "styles": ["normal"], "subsets": ["latin"] }, + "Elms Sans": { + "weights": [ + "100", + "200", + "300", + "400", + "500", + "600", + "700", + "800", + "900", + "variable" + ], + "styles": ["normal", "italic"], + "axes": [ + { + "tag": "wght", + "min": 100, + "max": 900, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext", "vietnamese"] + }, "Elsie": { "weights": ["400", "900"], "styles": ["normal"], @@ -16748,6 +16772,45 @@ "styles": ["normal"], "subsets": ["latin", "latin-ext"] }, + "Stack Sans Headline": { + "weights": ["200", "300", "400", "500", "600", "700", "variable"], + "styles": ["normal"], + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 700, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext"] + }, + "Stack Sans Notch": { + "weights": ["200", "300", "400", "500", "600", "700", "variable"], + "styles": ["normal"], + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 700, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext"] + }, + "Stack Sans Text": { + "weights": ["200", "300", "400", "500", "600", "700", "variable"], + "styles": ["normal"], + "axes": [ + { + "tag": "wght", + "min": 200, + "max": 700, + "defaultValue": 400 + } + ], + "subsets": ["latin", "latin-ext"] + }, "Stalemate": { "weights": ["400"], "styles": ["normal"], diff --git a/packages/font/src/google/index.ts b/packages/font/src/google/index.ts index ffc2438aa4b54..106be76d7f6b0 100644 --- a/packages/font/src/google/index.ts +++ b/packages/font/src/google/index.ts @@ -7001,6 +7001,31 @@ export declare function Electrolize< adjustFontFallback?: boolean subsets?: Array<'latin'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Elms_Sans< + 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' | 'italic' | Array<'normal' | 'italic'> + display?: Display + variable?: T + preload?: boolean + fallback?: string[] + adjustFontFallback?: boolean + subsets?: Array<'latin' | 'latin-ext' | 'vietnamese'> +}): T extends undefined ? NextFont : NextFontWithVariable export declare function Elsie< T extends CssVariable | undefined = undefined, >(options: { @@ -26593,6 +26618,66 @@ export declare function Staatliches< adjustFontFallback?: boolean subsets?: Array<'latin' | 'latin-ext'> }): T extends undefined ? NextFont : NextFontWithVariable +export declare function Stack_Sans_Headline< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '200' + | '300' + | '400' + | '500' + | '600' + | '700' + | 'variable' + | Array<'200' | '300' | '400' | '500' | '600' | '700'> + 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 Stack_Sans_Notch< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '200' + | '300' + | '400' + | '500' + | '600' + | '700' + | 'variable' + | Array<'200' | '300' | '400' | '500' | '600' | '700'> + 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 Stack_Sans_Text< + T extends CssVariable | undefined = undefined, +>(options?: { + weight?: + | '200' + | '300' + | '400' + | '500' + | '600' + | '700' + | 'variable' + | Array<'200' | '300' | '400' | '500' | '600' | '700'> + 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 Stalemate< T extends CssVariable | undefined = undefined, >(options: {