react-native-modern-elements
Version:
A modern, customizable UI component library for React Native
22 lines (21 loc) • 600 B
JavaScript
import React, { memo } from "react";
import { StyleSheet, View } from "react-native";
const TrackThumlable = () => {
return React.createElement(View, { style: styles.TrackThumlable });
};
export default memo(TrackThumlable);
const styles = StyleSheet.create({
TrackThumlable: {
position: "absolute",
top: -40,
width: 60,
height: 94,
// borderWidth: 1,
textAlign: "center",
fontWeight: "bold",
borderTopRightRadius: 50,
borderTopLeftRadius: 10,
borderBottomRightRadius: 10,
overflow: "hidden",
},
});