| 1234567891011121314151617181920212223242526272829303132 |
- import React from 'react';
- import { useTranslation } from 'react-i18next';
- import { Text, View } from 'react-native';
-
- import EndMeetingButton from './EndMeetingButton';
- import SoundDeviceButton from './SoundDeviceButton';
- // eslint-disable-next-line lines-around-comment
- // @ts-ignore
- import styles from './styles';
-
- /**
- * Implements the car mode footer component.
- *
- * @returns { JSX.Element} - The car mode footer component.
- */
- const CarModeFooter = (): JSX.Element => {
- const { t } = useTranslation();
-
- return (
- <View
- pointerEvents = 'box-none'
- style = { styles.bottomContainer }>
- <Text style = { styles.videoStoppedLabel }>
- { t('carmode.labels.videoStopped') }
- </Text>
- <SoundDeviceButton />
- <EndMeetingButton />
- </View>
- );
- };
-
- export default CarModeFooter;
|