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/translateVerticalAlign.ts

10 lines
220 B
TypeScript
Raw Normal View History

2024-04-08 10:50:01 -05:00
export const translateVerticalAlign = (align: string) => {
if (align === 'BOTTOM') {
return Symbol.for('bottom');
}
if (align === 'CENTER') {
return Symbol.for('center');
}
return Symbol.for('top');
};