react-native-schedule-week-view
Version:
Week View Calendar for React Native
23 lines (19 loc) • 418 B
JavaScript
import { StyleSheet } from 'react-native';
const circleSize = 8;
const lineWidth = 1.5;
const styles = StyleSheet.create({
container: {
position: 'absolute',
zIndex: 2,
borderTopWidth: lineWidth,
},
circle: {
position: 'absolute',
top: -(circleSize + lineWidth) / 2,
left: 2,
borderRadius: circleSize,
height: circleSize,
width: circleSize,
},
});
export default styles;