File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -105,8 +105,17 @@ class Text extends PureComponent<PropsTypes> {
105
105
render ( ) {
106
106
const {
107
107
// (!) extract flex prop to avoid passing them on Android
108
+ // TODO: extract alignment (top, right, ...) props till we manage to exclude them from typings
108
109
/* eslint-disable */
109
110
flex,
111
+ // @ts -ignore
112
+ left,
113
+ // @ts -ignore
114
+ top,
115
+ // @ts -ignore
116
+ right,
117
+ // @ts -ignore
118
+ bottom,
110
119
/* eslint-enable */
111
120
modifiers,
112
121
style,
Original file line number Diff line number Diff line change @@ -15,9 +15,18 @@ const DEFAULT_INPUT_COLOR: ColorType = {
15
15
16
16
const Input = ( {
17
17
// (!) extract flex prop to avoid passing them on Android
18
+ // TODO: extract alignment (top, right, ...) props till we manage to exclude them from typings
18
19
/* eslint-disable */
19
20
// @ts -ignore (does not exist on props)
20
21
flex,
22
+ // @ts -ignore
23
+ left,
24
+ // @ts -ignore
25
+ top,
26
+ // @ts -ignore
27
+ right,
28
+ // @ts -ignore
29
+ bottom,
21
30
/* eslint-enable */
22
31
style,
23
32
hint,
You can’t perform that action at this time.
0 commit comments