@janiscommerce/ui-native
Version:
components library for Janis app
9 lines (8 loc) • 306 B
TypeScript
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;