react-native-eva-icons
Version:
Eva Icons for React Native
10 lines (9 loc) • 407 B
TypeScript
import { ViewStyle } from 'react-native';
import { Animation, AnimationConfig } from './animation';
export declare type IconAnimation = Animation<any, ViewStyle>;
export interface IconAnimationRegistry {
zoom: IconAnimation;
pulse: IconAnimation;
shake: IconAnimation;
}
export declare function getIconAnimation(animation?: keyof IconAnimationRegistry, config?: AnimationConfig): IconAnimation;