Skip to content

Commit 0708dbc

Browse files
authored
WheelPicker - omitting 'color' from textStyle (#1668)
* WheelPicker - omitting 'color' from textStyle * generating type
1 parent a20b158 commit 0708dbc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

generatedTypes/src/incubator/WheelPicker/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export interface WheelPickerProps {
4141
/**
4242
* Row text style
4343
*/
44-
textStyle?: TextStyle;
44+
textStyle?: Omit<TextStyle, 'color'>;
4545
/**
4646
* Additional label on the right of the item text
4747
*/

src/incubator/WheelPicker/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export interface WheelPickerProps {
5454
/**
5555
* Row text style
5656
*/
57-
textStyle?: TextStyle;
57+
textStyle?: Omit<TextStyle, 'color'>;
5858
/**
5959
* Additional label on the right of the item text
6060
*/

0 commit comments

Comments
 (0)