mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-23 06:04:01 -05:00
11 lines
277 B
TypeScript
11 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';
|
||
|
}
|
||
|
};
|