import * as React from 'react'; import { StyleSheet, View } from 'react-native'; type BarProps = { barStyle?: object; }; export const Bar: React.FC = ({ barStyle }) => { return ( ); }; const BarStyles = StyleSheet.create({ barContainer: { display: 'flex', justifyContent: 'center', alignItems: 'center', }, bar: { width: '10%', height: 5, borderRadius: 5, marginTop: 10, marginBottom: 10, backgroundColor: '#e2e2e2', }, });