mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -05:00
10 lines
245 B
TypeScript
10 lines
245 B
TypeScript
import slugify from 'slugify';
|
|
|
|
import fonts from '@ui/gfonts.json';
|
|
|
|
const gfonts = new Set(fonts);
|
|
|
|
export const validateFont = (fontFamily: string): boolean => {
|
|
const name = slugify(fontFamily.toLowerCase());
|
|
return gfonts.has(name);
|
|
};
|