@symbiot.dev/expo-animated-linear-gradient
Version:
A lightweight, animated linear gradient component built on top of expo-linear-gradient for React Native and Expo.
7 lines (6 loc) • 389 B
TypeScript
import { LinearGradientProps } from 'expo-linear-gradient';
import { AnimatedGradientProps } from '../hooks/use-animated-gradient';
export type AnimatedLinearGradientProps = AnimatedGradientProps & Omit<LinearGradientProps, 'colors'> & {
colors: string[];
};
export declare const AnimatedLinearGradient: (props: AnimatedLinearGradientProps) => import("react/jsx-runtime").JSX.Element;