0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 05:33:02 -05:00
This commit is contained in:
Alex Sánchez 2024-04-15 14:07:32 +02:00
parent 6f4c56bc2c
commit 57c1fd356b
No known key found for this signature in database
GPG key ID: 68A95170EEB87E16

View file

@ -3,7 +3,7 @@ import { BlendMode as PenpotBlendMode } from '@ui/lib/types/utils/blendModes';
export const translateBlendMode = (blendMode: BlendMode): PenpotBlendMode => {
switch (blendMode) {
case 'PASS_THROUGH':
return 'normal';
return 'normal'; //@TODO: is not translatable in penpot, this is the closest one
case 'NORMAL':
return 'normal';
case 'DARKEN':