UNPKG

@wordpress/components

Version:
18 lines (13 loc) 320 B
/** * External dependencies */ import { View } from 'react-native'; /** * Internal dependencies */ import style from './style.scss'; export default function Spinner( props ) { const { progress = 0 } = props; const width = progress + '%'; return <View style={ [ style.spinner, { width }, props.style ] } />; }