File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
packages/core/src/components/DatePicker Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -395,20 +395,20 @@ const DatePicker: React.FC<React.PropsWithChildren<Props>> = ({
395395 < Touchable disabled = { disabled } onPress = { toggleVisibility } >
396396 < View pointerEvents = "none" >
397397 < View
398- style = { [
398+ style = { StyleSheet . flatten ( [
399399 styles . container ,
400400 omit ( style , [ ...paddingStyleNames , "backgroundColor" ] ) ,
401- ] }
401+ ] ) }
402402 >
403403 { leftIconName && leftIconMode === "outset" ? (
404404 < Icon { ...leftIconProps } style = { leftIconStyle } />
405405 ) : null }
406406 < View
407- style = { [
407+ style = { StyleSheet . flatten ( [
408408 containerStyle ,
409409 style ? { height : style . height } : { } ,
410410 omit ( style , [ ...marginStyleNames , ...positionStyleNames ] ) ,
411- ] }
411+ ] ) }
412412 >
413413 { type === "underline" ? (
414414 // When type === 'flat', render an underline
You can’t perform that action at this time.
0 commit comments