import React, { memo } from 'react' import { View, type ColorValue, type ViewStyle } from 'react-native' import { Spacing } from '../helpers' interface TimeIndicatorProps { color?: ColorValue height: number } export const TimeIndicator = memo(({ color, height }: TimeIndicatorProps) => { const backgroundColor = color ?? 'white' return ( ) }) const $lineIndicator: ViewStyle = { position: 'absolute', width: 2, alignSelf: 'center', alignItems: 'center', justifyContent: 'center', } const $dot: ViewStyle = { position: 'absolute', alignSelf: 'center', height: Spacing.xs, width: Spacing.xs, borderRadius: Spacing.xs / 2, } const $top: ViewStyle = { top: 0 } const $bottom: ViewStyle = { bottom: 0 }