mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -05:00
13 lines
460 B
TypeScript
13 lines
460 B
TypeScript
import { FontId } from '@ui/lib/types/shapes/textShape';
|
|
|
|
import { translateCustomFont } from './custom';
|
|
import { translateGoogleFont } from './gfonts';
|
|
import { translateLocalFont } from './local';
|
|
|
|
export const translateFontId = (fontName: FontName, fontWeight: number): FontId | undefined => {
|
|
return (
|
|
translateGoogleFont(fontName, fontWeight) ??
|
|
translateLocalFont(fontName, fontWeight) ??
|
|
translateCustomFont(fontName, fontWeight)
|
|
);
|
|
};
|