0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 21:53:27 -05:00
penpot-exporter-figma-plugin/ui-src/validators/validateFont.ts

11 lines
245 B
TypeScript
Raw Normal View History

2024-04-08 10:50:01 -05:00
import slugify from 'slugify';
import fonts from '@ui/gfonts.json';
2024-04-08 10:50:01 -05:00
const gfonts = new Set(fonts);
export const validateFont = (fontFamily: string): boolean => {
const name = slugify(fontFamily.toLowerCase());
2024-04-08 10:50:01 -05:00
return gfonts.has(name);
};