We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9678873 commit b45ce69Copy full SHA for b45ce69
src/incubator/Dialog/DialogHeader.tsx
@@ -30,7 +30,7 @@ const DialogHeader = (props: DialogHeaderProps = {}) => {
30
31
const knob = useMemo(() => {
32
if (showKnob) {
33
- return <View style={styles.knob}/>;
+ return <View style={[styles.knob, {backgroundColor: Colors.$outlineDefault}]}/>;
34
}
35
}, [showKnob]);
36
@@ -102,7 +102,6 @@ const styles = StyleSheet.create({
102
height: Spacings.s1,
103
marginTop: Spacings.s2,
104
marginBottom: Spacings.s2,
105
- backgroundColor: Colors.$outlineDefault,
106
borderRadius: BorderRadiuses.br10
107
108
});
0 commit comments