@umituz/react-native-design-system 1.5.6 → 1.5.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -187,7 +187,7 @@ export const AtomicPicker = ({ value, onChange, options, label, placeholder = 'S
187
187
  </View>
188
188
 
189
189
  {/* Selected Indicator */}
190
- {selected && (<AtomicIcon name="CheckCircle" size="md" color="primary"/>)}
190
+ {selected && (<AtomicIcon name="CircleCheck" size="md" color="primary"/>)}
191
191
  </TouchableOpacity>);
192
192
  };
193
193
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-design-system",
3
- "version": "1.5.6",
3
+ "version": "1.5.7",
4
4
  "description": "Universal design system for React Native apps - Domain-Driven Design architecture with Material Design 3 components",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -276,7 +276,7 @@ export const AtomicPicker: React.FC<AtomicPickerProps> = ({
276
276
 
277
277
  {/* Selected Indicator */}
278
278
  {selected && (
279
- <AtomicIcon name="CheckCircle" size="md" color="primary" />
279
+ <AtomicIcon name="CircleCheck" size="md" color="primary" />
280
280
  )}
281
281
  </TouchableOpacity>
282
282
  );