import React from 'react'; import Touchable from 'react-native-platform-touchable'; import { CustomIcon } from '../CustomIcon'; import { useTheme } from '../../theme'; import styles from './styles'; import RCActivityIndicator from '../ActivityIndicator'; import { AUDIO_BUTTON_HIT_SLOP } from './utils'; interface IButton { loading: boolean; paused: boolean; disabled?: boolean; onPress: () => void; isReadyToPlay: boolean; } type TCustomIconName = 'arrow-down' | 'play-shape-filled' | 'pause-shape-filled'; const PlayButton = ({ loading, paused, onPress, disabled, isReadyToPlay }: IButton) => { const { colors } = useTheme(); let customIconName: TCustomIconName = 'arrow-down'; if (isReadyToPlay) { customIconName = paused ? 'play-shape-filled' : 'pause-shape-filled'; } return ( {loading ? ( ) : ( )} ); }; export default PlayButton;