We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45c0920 commit 2b06ee0Copy full SHA for 2b06ee0
1 file changed
examples/demo/src/components/modals/MultiPairInputModal.tsx
@@ -122,7 +122,8 @@ export default function MultiPairInputModal({
122
</View>
123
))}
124
<TouchableOpacity onPress={addRow} style={styles.addRowBtn}>
125
- <Text style={styles.addRowText}>+ Add Row</Text>
+ <Icon name="add" size={18} color={AppColors.osPrimary} />
126
+ <Text style={styles.addRowText}>Add Row</Text>
127
</TouchableOpacity>
128
</ScrollView>
129
<View style={AppDialogStyles.actions}>
@@ -173,7 +174,10 @@ const styles = StyleSheet.create({
173
174
},
175
addRowBtn: {
176
paddingVertical: 10,
177
+ flexDirection: 'row',
178
alignItems: 'center',
179
+ justifyContent: 'center',
180
+ gap: 4,
181
182
addRowText: {
183
color: AppColors.osPrimary,
0 commit comments