import { Image, type ImageContentFit } from "expo-image"; import { LinearGradient } from "expo-linear-gradient"; import type React from "react"; import { StyleSheet, View, type ViewProps } from "react-native"; import { Text } from "@/components/common/Text"; export const textShadowStyle = StyleSheet.create({ shadow: { shadowColor: "#000", shadowOffset: { width: 1, height: 1, }, shadowOpacity: 1, shadowRadius: 0.5, elevation: 6, }, }); const GenericSlideCard: React.FC< { id: string; url?: string; title?: string; colors?: readonly [string, string, ...string[]]; contentFit?: ImageContentFit; } & ViewProps > = ({ id, url, title, colors = ["#9333ea", "transparent"], contentFit = "contain", ...props }) => ( <> {title && ( {title} )} ); export default GenericSlideCard;