"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7315/react/features/conference/components/native/carmode/EndMeetingIcon.tsx" (2 Jun 2023, 484 Bytes) of package /linux/misc/jitsi-meet-7315.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.

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