import * as React from "react"; import { StyleProp, ViewStyle } from "react-native"; import { LinearGradient } from "expo-linear-gradient"; type LinearGradientComponentProps = { color1: string; color2: string; color3?: string; startX: number; startY: number; endX: number; endY: number; children?: React.ReactNode; style?: StyleProp; }; const LinearGradientComponent = ({ children, color1 = "rgba(90, 69, 255, 1)", color2 = "rgba(59, 201, 234, 1)", color3 = undefined, startX = 0, startY = 0, endX = 100, endY = 100, style, }: LinearGradientComponentProps) => { const colors = color3 ? ([color1, color2, color3] as const) : ([color1, color2] as const); const start = { x: startX / 100, y: startY / 100 }; const end = { x: endX / 100, y: endY / 100 }; return ( {children} ); }; export default LinearGradientComponent;