0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2025-01-09 08:30:08 -05:00
penpot-exporter-figma-plugin/plugin-src/translators/text/custom/customFontIds.ts
Alex Sánchez c013e80962
Custom Fonts (#82)
* wip

* moved logic to validate custom fonts

* missing fonts section

* lint

* refactor and improve

* simplify resize

* refactor

* Implemente custom fonts

* styling plugin

* styling plugin

* minor styling fix

* changeset

* fix

* fix eslint

---------

Co-authored-by: Jordi Sala Morales <jordism91@gmail.com>
2024-05-03 13:43:07 +02:00

9 lines
273 B
TypeScript

const customFontIds = new Map<string, string>();
export const getCustomFontId = (fontName: FontName) => {
return customFontIds.get(fontName.family);
};
export const setCustomFontId = (fontFamily: string, fontId: string) => {
customFontIds.set(fontFamily, fontId);
};