0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 21:53:27 -05:00
penpot-exporter-figma-plugin/plugin-src/translators/text/translateTextDecoration.ts
Alex Sánchez 8021da2623
Google Fonts (#80)
* moved validate font logic

* google fonts working

* fixes

* minor improvements

* fix linter

* fixes

* Changeset

* refactor

* refactor

* move files around

---------

Co-authored-by: Jordi Sala Morales <jordism91@gmail.com>
2024-04-29 15:44:49 +02:00

10 lines
277 B
TypeScript

export const translateTextDecoration = (segment: Pick<StyledTextSegment, 'textDecoration'>) => {
switch (segment.textDecoration) {
case 'STRIKETHROUGH':
return 'line-through';
case 'UNDERLINE':
return 'underline';
default:
return 'none';
}
};