mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -05:00
10 lines
221 B
TypeScript
10 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');
|
||
|
};
|