react-native-amazing-icons
Version:
A collection of beautifully animated React Native icons inspired by popular social media platforms. Each animation is optimized for performance and designed to create engaging user interactions.
19 lines (16 loc) • 516 B
TypeScript
declare module 'react-native-amazing-icons' {
import { ComponentProps } from 'react';
import { ViewStyle } from 'react-native';
interface AnimatedHeartProps {
size?: number;
liked?: boolean;
baseColor?: string;
activeColor?: string;
gradientStartColor?: string;
gradientEndColor?: string;
onLikeChange?: (liked: boolean) => void;
style?: ViewStyle;
}
const AnimatedHeart: React.FC<AnimatedHeartProps>;
export default AnimatedHeart;
}