import {type StyleProp, View, type ViewStyle} from 'react-native' import {Trans} from '@lingui/macro' import {atoms as a, tokens, useTheme} from '#/alf' import {Text} from '#/components/Typography' export function LiveIndicator({ size = 'small', style, }: { size?: 'tiny' | 'small' | 'large' style?: StyleProp }) { const t = useTheme() const fontSize = { tiny: {fontSize: 7, letterSpacing: tokens.TRACKING}, small: a.text_2xs, large: a.text_xs, }[size] return ( LIVE ) }