import React from 'react';
import { Modal, StyleSheet } from 'react-native';
import { ILoadingContainer, LoadingContainer } from './LoadingContainer';
import { Box } from '../Box';
interface IProps extends ILoadingContainer {
full?: boolean;
}
export const Loading = ({ full, show, ...rest }: IProps) => {
return full ? (
) : (
);
};