react-native-web-ui-components
Version:
[](https://github.com/CareLuLu/react-native-web-ui-components/issues/12) [](http
16 lines (14 loc) • 327 B
JavaScript
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;