mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2025-01-06 23:00:55 -05:00
9 lines
276 B
TypeScript
9 lines
276 B
TypeScript
import { translateShadowEffects } from '@plugin/translators';
|
|
|
|
import { ShapeAttributes } from '@ui/lib/types/shapes/shape';
|
|
|
|
export const transformEffects = (node: BlendMixin): Partial<ShapeAttributes> => {
|
|
return {
|
|
shadow: translateShadowEffects(node.effects)
|
|
};
|
|
};
|