0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 21:53:27 -05:00
penpot-exporter-figma-plugin/ui-src/translators/translateHorizontalAlign.ts
2024-04-12 18:52:19 +02:00

9 lines
221 B
TypeScript

export const translateHorizontalAlign = (align: string) => {
if (align === 'RIGHT') {
return Symbol.for('right');
}
if (align === 'CENTER') {
return Symbol.for('center');
}
return Symbol.for('left');
};