chore: fix url api

This commit is contained in:
2026-02-18 21:12:03 +01:00
parent c5b67674fc
commit aed786cf2c
+2 -2
View File
@@ -1,11 +1,11 @@
import React, { useMemo } from "react";
import { View, StyleSheet, type ViewStyle } from "react-native";
import { View, StyleSheet, type ViewStyle, type StyleProp } from "react-native";
import { spacing, borderRadius, shadows } from "../../theme";
import { useTheme } from "../../context/ThemeContext";
interface CardProps {
children: React.ReactNode;
style?: ViewStyle;
style?: StyleProp<ViewStyle>;
}
export default function Card({ children, style }: CardProps) {