File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -120,8 +120,9 @@ class Searchbar extends React.Component<Props> {
120120 style,
121121 ...rest
122122 } = this . props ;
123- const { colors, roundness, dark } = theme ;
123+ const { colors, roundness, dark, fonts } = theme ;
124124 const textColor = colors . text ;
125+ const fontFamily = fonts . regular ;
125126 const iconColor = dark
126127 ? textColor
127128 : color ( textColor )
@@ -149,7 +150,7 @@ class Searchbar extends React.Component<Props> {
149150 icon = { icon || 'search' }
150151 />
151152 < TextInput
152- style = { [ styles . input , { color : textColor } ] }
153+ style = { [ styles . input , { color : textColor , fontFamily } ] }
153154 placeholder = { placeholder || '' }
154155 placeholderTextColor = { colors . placeholder }
155156 selectionColor = { colors . primary }
You can’t perform that action at this time.
0 commit comments