mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2025-01-09 08:30:08 -05:00
c013e80962
* 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>
10 lines
385 B
TypeScript
10 lines
385 B
TypeScript
import { getCustomFontId, translateFontVariantId } from '@plugin/translators/text/custom';
|
|
|
|
import { FontId } from '@ui/lib/types/text/textContent';
|
|
|
|
export const translateCustomFont = (fontName: FontName, fontWeight: number): FontId | undefined => {
|
|
return {
|
|
fontId: `custom-${getCustomFontId(fontName)}`,
|
|
fontVariantId: translateFontVariantId(fontName, fontWeight)
|
|
};
|
|
};
|