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