mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-31 12:03:58 -05:00
10 lines
222 B
TypeScript
10 lines
222 B
TypeScript
|
export const translateStyleName = (figmaStyle: BaseStyle): string => {
|
||
|
const splitName = figmaStyle.name.split('/');
|
||
|
|
||
|
if (splitName.length > 0) {
|
||
|
return splitName.pop() as string;
|
||
|
}
|
||
|
|
||
|
return figmaStyle.name;
|
||
|
};
|