Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions packages/font/src/google/font-data.json
Original file line number Diff line number Diff line change
Expand Up @@ -1418,6 +1418,21 @@
"styles": ["normal", "italic"],
"subsets": ["latin"]
},
"BBH Sans Bartle": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["latin"]
},
"BBH Sans Bogle": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["latin"]
},
"BBH Sans Hegarty": {
"weights": ["400"],
"styles": ["normal"],
"subsets": ["latin"]
},
"BIZ UDGothic": {
"weights": ["400", "700"],
"styles": ["normal"],
Expand Down
36 changes: 36 additions & 0 deletions packages/font/src/google/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2253,6 +2253,42 @@ export declare function B612_Mono<
adjustFontFallback?: boolean
subsets?: Array<'latin'>
}): T extends undefined ? NextFont : NextFontWithVariable
export declare function BBH_Sans_Bartle<
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 BBH_Sans_Bogle<
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 BBH_Sans_Hegarty<
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 BIZ_UDGothic<
T extends CssVariable | undefined = undefined,
>(options: {
Expand Down
Loading