UNPKG

@janiscommerce/ui-native

Version:
9 lines (8 loc) 306 B
import React from 'react'; import { Animated, ViewProps } from 'react-native'; interface IanimatedView extends Animated.AnimatedProps<ViewProps> { size?: number; color?: string; } declare const LoadingSvg: ({ size, color, ...props }: IanimatedView) => React.JSX.Element; export default LoadingSvg;