UNPKG

react-native-eva-icons

Version:
10 lines (9 loc) 407 B
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;