UNPKG

react-native-web-ui-components

Version:

[![Dependencies](https://img.shields.io/badge/dependencies-renovate-brightgreen.svg)](https://github.com/CareLuLu/react-native-web-ui-components/issues/12) [![Codacy Badge](https://img.shields.io/codacy/grade/c0ef990240a84ab7abee7af64602dd6d/master)](http

16 lines (14 loc) 327 B
import React from 'react'; import { StyleSheet } from 'react-native'; import Text from '../Text'; const styles = StyleSheet.create({ text: { padding: 5, height: 30, opacity: 0.7 } }); const Spinner = () => /*#__PURE__*/React.createElement(Text, { style: styles.text }, "Loading..."); export default Spinner;