import React from "react"; import { ViewStyle, ActivityIndicator } from "react-native"; const Spinner: React.FC<{ color?: string; size?: number; style?: ViewStyle; }> = props => { const { color = "#000", size = 20, style = {} } = props; return ( ); }; export default Spinner;