mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-11 03:42:29 +00:00
Replace tokens with ones that are part of the Design System and are either the same or very similar
19 lines
473 B
TypeScript
19 lines
473 B
TypeScript
import React from 'react';
|
|
|
|
import Icon from '../../../../base/icons/components/Icon';
|
|
import { IconVolumeUp } 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.ui02 }
|
|
size = { 20 }
|
|
src = { IconVolumeUp } />);
|
|
|
|
export default AudioIcon;
|