UNPKG

@janiscommerce/ui-native

Version:
13 lines (12 loc) 303 B
import React, { FC } from 'react'; import { ViewStyle } from 'react-native'; interface Props { isLoading: boolean; color?: string; size?: number; duration?: number; children?: React.ReactNode | null; style?: ViewStyle; } declare const Loading: FC<Props>; export default Loading;