vcc-ui
Version:
A React library for building user interfaces at Volvo Cars
31 lines (30 loc) • 710 B
TypeScript
export declare function isUnsupportedFontLocale(locale?: string): boolean;
export declare const fonts: ({
fontFamily: string;
fontWeight: number;
fontDisplay: string;
unicodeRange: string;
src: string[];
fontStyle?: undefined;
} | {
fontFamily: string;
fontDisplay: string;
fontWeight: number;
src: string[];
unicodeRange?: undefined;
fontStyle?: undefined;
} | {
fontFamily: string;
fontDisplay: string;
fontWeight: number;
fontStyle: string;
unicodeRange: string;
src: string[];
} | {
fontFamily: string;
fontDisplay: string;
fontWeight: number;
fontStyle: string;
src: string[];
unicodeRange?: undefined;
})[];