@umituz/react-native-ai-creations 1.2.1 → 1.2.2

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-creations",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "AI-generated creations gallery with filtering, sharing, and management for React Native apps",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./src/index.ts",
@@ -7,7 +7,7 @@ import React, { useMemo, useState } from "react";
7
7
  import { Image, TouchableOpacity, StyleSheet, View } from "react-native";
8
8
  import {
9
9
  useAppDesignTokens,
10
- AtomicIcon
10
+ AtomicIcon,
11
11
  } from "@umituz/react-native-design-system";
12
12
 
13
13
  interface CreationThumbnailProps {
@@ -35,13 +35,13 @@ export function CreationThumbnail({
35
35
  },
36
36
  overlay: {
37
37
  ...StyleSheet.absoluteFillObject,
38
- backgroundColor: 'rgba(0, 0, 0, 0.5)',
38
+ backgroundColor: "rgba(0, 0, 0, 0.5)",
39
39
  borderRadius: tokens.spacing.sm,
40
- justifyContent: 'center',
41
- alignItems: 'center',
40
+ justifyContent: "center",
41
+ alignItems: "center",
42
42
  },
43
43
  }),
44
- [tokens, size],
44
+ [tokens, size]
45
45
  );
46
46
 
47
47
  return (
@@ -55,7 +55,7 @@ export function CreationThumbnail({
55
55
  <Image source={{ uri }} style={styles.thumbnail} />
56
56
  {isPressed && onPress && (
57
57
  <View style={styles.overlay}>
58
- <AtomicIcon name="eye" size="lg" color="white" />
58
+ <AtomicIcon name="eye" size="lg" color="textInverse" />
59
59
  </View>
60
60
  )}
61
61
  </TouchableOpacity>