import { StyleSheet } from 'react-native'; export const style = StyleSheet.create({ container: { width: 20, height: 20, borderWidth: 2, borderColor: '#000000', position: 'relative' }, vertical: { position: 'absolute', height: 18, left: 8, marginLeft: -1, width: 2, backgroundColor: '#000000' }, horizontal: { position: 'absolute', width: 18, top: 8, marginTop: -1, height: 2, backgroundColor: '#000000' } });