UNPKG

react-native-modern-elements

Version:

A modern, customizable UI component library for React Native

29 lines (28 loc) 894 B
import React, { memo } from "react"; import { View } from "react-native"; const Wheel = () => { return (React.createElement(React.Fragment, null, React.createElement(View, { style: { position: "absolute", width: 8, height: 8, borderRadius: 100, backgroundColor: "white", borderColor: "green", borderWidth: 1.5, top: -14, left: -8, } }), React.createElement(View, { style: { position: "absolute", width: 8, height: 8, borderRadius: 100, backgroundColor: "white", borderColor: "green", borderWidth: 1.5, top: -14, right: -5, } }))); }; export default memo(Wheel);