UNPKG

@wordpress/components

Version:
25 lines (23 loc) 476 B
import { createElement } from "@wordpress/element"; /** * External dependencies */ import { View } from 'react-native'; /** * Internal dependencies */ import style from './style.scss'; export default function Spinner(props) { const { progress = 0, testID } = props; const width = progress + '%'; return createElement(View, { style: [style.spinner, { width }, props.style], testID: testID }); } //# sourceMappingURL=index.native.js.map