UNPKG

react-native-animated-spinkit

Version:
16 lines (13 loc) 281 B
import { ViewProps } from 'react-native' export interface SpinnerProps extends ViewProps { size: number color: string animating: boolean hidesWhenStopped: boolean } export const defaultProps = { size: 48, color: '#000', animating: true, hidesWhenStopped: true, }