mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2025-01-06 23:00:55 -05:00
2920ac297b
* wip * implement bullet points * needs more ifs * refactor * revert * refactor * fix and refactor * refactor * refactor * refactor * add ordered class * wip * wip * fixes * package.json * little refactors * base list * fixes * abstract baselist * refactors * refactor * changeset * fix eslint issue * fix * fixes * fixes --------- Co-authored-by: Alex Sánchez <sion333@gmail.com>
10 lines
390 B
TypeScript
10 lines
390 B
TypeScript
import { getCustomFontId, translateFontVariantId } from '@plugin/translators/text/font/custom';
|
|
|
|
import { FontId } from '@ui/lib/types/shapes/textShape';
|
|
|
|
export const translateCustomFont = (fontName: FontName, fontWeight: number): FontId | undefined => {
|
|
return {
|
|
fontId: `custom-${getCustomFontId(fontName)}`,
|
|
fontVariantId: translateFontVariantId(fontName, fontWeight)
|
|
};
|
|
};
|