import { memo } from 'react' import { StyleSheet, View } from 'react-native' import { Text, useTheme } from 'react-native-paper' function DayName({ label }: { label: string }) { const theme = useTheme() const textFont = theme.fonts.bodySmall return ( {label} ) } const styles = StyleSheet.create({ dayName: { alignItems: 'center', flex: 1, }, dayNameLabel: { fontSize: 14, opacity: 0.7, }, }) export default memo(DayName)