"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7307/react/features/conference/components/native/carmode/AudioIcon.tsx" (30 May 2023, 473 Bytes) of package /linux/misc/jitsi-meet-7307.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) TSX (TypeScript with React) source code syntax highlighting (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file. See also the last Fossies "Diffs" side-by-side code changes report for "AudioIcon.tsx": jitsi-meet_8319_vs_jitsi-meet_8615.

    1 import React from 'react';
    2 
    3 import Icon from '../../../../base/icons/components/Icon';
    4 import { IconVolumeUp } from '../../../../base/icons/svg';
    5 import BaseTheme from '../../../../base/ui/components/BaseTheme.native';
    6 
    7 /**
    8  * React component for Audio icon.
    9  *
   10  * @returns {JSX.Element} - The Audio icon.
   11  *
   12  */
   13 const AudioIcon = (): JSX.Element => (<Icon
   14     color = { BaseTheme.palette.ui02 }
   15     size = { 20 }
   16     src = { IconVolumeUp } />);
   17 
   18 export default AudioIcon;