mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2025-03-11 23:31:24 -05:00
10 lines
285 B
TypeScript
10 lines
285 B
TypeScript
|
import { translateShadowEffects } from '@plugin/translators';
|
||
|
|
||
|
import { ShapeAttributes } from '@ui/lib/types/shape/shapeAttributes';
|
||
|
|
||
|
export const transformEffects = (node: BlendMixin): Partial<ShapeAttributes> => {
|
||
|
return {
|
||
|
shadow: translateShadowEffects(node.effects)
|
||
|
};
|
||
|
};
|