@umituz/react-native-ai-generation-content 1.17.244 → 1.17.245

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/react-native-ai-generation-content",
3
- "version": "1.17.244",
3
+ "version": "1.17.245",
4
4
  "description": "Provider-agnostic AI generation orchestration for React Native with result preview components",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
@@ -53,7 +53,7 @@ export const ResultActionBar: React.FC<ResultActionBarProps> = ({
53
53
  iconContainerSecondary: {
54
54
  backgroundColor: tokens.colors.backgroundSecondary,
55
55
  borderWidth: 1,
56
- borderColor: tokens.colors.borderPrimary,
56
+ borderColor: tokens.colors.border,
57
57
  },
58
58
  iconContainerPrimary: {
59
59
  backgroundColor: tokens.colors.primary,
@@ -94,7 +94,7 @@ export const ResultActionBar: React.FC<ResultActionBarProps> = ({
94
94
  {isSharing ? (
95
95
  <ActivityIndicator color="#FFFFFF" />
96
96
  ) : (
97
- <AtomicIcon name="share" size="md" color="white" />
97
+ <AtomicIcon name="share" size="md" color="onPrimary" />
98
98
  )}
99
99
  </View>
100
100
  <AtomicText style={styles.label}>{shareButtonText}</AtomicText>
@@ -102,7 +102,7 @@ export const ResultActionBar: React.FC<ResultActionBarProps> = ({
102
102
 
103
103
  <TouchableOpacity style={styles.actionButton} onPress={onTryAgain}>
104
104
  <View style={[styles.iconContainer, styles.iconContainerSecondary]}>
105
- <AtomicIcon name="refresh-cw" size="md" color="textPrimary" />
105
+ <AtomicIcon name="refresh" size="md" color="textPrimary" />
106
106
  </View>
107
107
  <AtomicText style={styles.label}>{tryAgainButtonText}</AtomicText>
108
108
  </TouchableOpacity>