mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -05:00
9 lines
231 B
TypeScript
9 lines
231 B
TypeScript
import { TextFontStyle } from '@ui/lib/types/shapes/textShape';
|
|
|
|
export const translateFontStyle = (style: string): TextFontStyle => {
|
|
if (style.toLowerCase().includes('italic')) {
|
|
return 'italic';
|
|
}
|
|
|
|
return 'normal';
|
|
};
|