mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
37 lines
1.2 KiB
TypeScript
37 lines
1.2 KiB
TypeScript
import { GOOGLE_FONTS_RANGES } from "../FontMetadata";
|
|
import { type ExcalidrawFontFaceDescriptor } from "../Fonts";
|
|
|
|
import Cyrilic from "./Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTA3j6zbXWjgevT5.woff2";
|
|
import Latin from "./Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTQ3j6zbXWjgeg.woff2";
|
|
import CyrilicExt from "./Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTk3j6zbXWjgevT5.woff2";
|
|
import LatinExt from "./Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTo3j6zbXWjgevT5.woff2";
|
|
import Vietnamese from "./Nunito-Regular-XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhdTs3j6zbXWjgevT5.woff2";
|
|
|
|
export const NunitoFontFaces: ExcalidrawFontFaceDescriptor[] = [
|
|
{
|
|
uri: CyrilicExt,
|
|
descriptors: {
|
|
unicodeRange: GOOGLE_FONTS_RANGES.CYRILIC_EXT,
|
|
weight: "500",
|
|
},
|
|
},
|
|
{
|
|
uri: Cyrilic,
|
|
descriptors: { unicodeRange: GOOGLE_FONTS_RANGES.CYRILIC, weight: "500" },
|
|
},
|
|
{
|
|
uri: Vietnamese,
|
|
descriptors: {
|
|
unicodeRange: GOOGLE_FONTS_RANGES.VIETNAMESE,
|
|
weight: "500",
|
|
},
|
|
},
|
|
{
|
|
uri: LatinExt,
|
|
descriptors: { unicodeRange: GOOGLE_FONTS_RANGES.LATIN_EXT, weight: "500" },
|
|
},
|
|
{
|
|
uri: Latin,
|
|
descriptors: { unicodeRange: GOOGLE_FONTS_RANGES.LATIN, weight: "500" },
|
|
},
|
|
];
|