diff --git a/package-lock.json b/package-lock.json index a5a4b9e..3161e4c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "voltra", - "version": "1.0.1", + "version": "1.1.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "voltra", - "version": "1.0.1", + "version": "1.1.2", "license": "MIT", "dependencies": { "dedent": "^1.7.1", diff --git a/src/styles/types.ts b/src/styles/types.ts index 9dba3f8..ec26f07 100644 --- a/src/styles/types.ts +++ b/src/styles/types.ts @@ -46,7 +46,14 @@ export type VoltraViewStyle = Pick< export type VoltraTextStyle = VoltraViewStyle & Pick< RNTextStyle, - 'fontSize' | 'fontWeight' | 'fontFamily' | 'color' | 'letterSpacing' | 'fontVariant' | 'textDecorationLine' + 'fontSize' + | 'fontWeight' + | 'fontFamily' + | 'color' + | 'letterSpacing' + | 'fontVariant' + | 'textDecorationLine' + | 'lineHeight' > export type VoltraStyleProp = StyleProp