mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-07-14 07:27:47 +00:00
Remove unnecessary ts-ignores Remove unnecessary eslint-disable Fix type errors Change Dispatch type to IStore['dispatch']
19 lines
481 B
TypeScript
19 lines
481 B
TypeScript
import React from 'react';
|
|
|
|
import Icon from '../../../../base/icons/components/Icon';
|
|
import { IconVolumeEmpty } from '../../../../base/icons/svg';
|
|
import BaseTheme from '../../../../base/ui/components/BaseTheme.native';
|
|
|
|
/**
|
|
* React component for Audio icon.
|
|
*
|
|
* @returns {JSX.Element} - The Audio icon.
|
|
*
|
|
*/
|
|
const AudioIcon = (): JSX.Element => (<Icon
|
|
color = { BaseTheme.palette.text06 }
|
|
size = { 20 }
|
|
src = { IconVolumeEmpty } />);
|
|
|
|
export default AudioIcon;
|