Files
jitsi-meet/react/features/participants-pane/components/native/RaisedHandIndicator.js
Robert Pintilii 936a1a6b0e ref(design) Update icons (#12489)
Remove unused icons
Remove fill none from icons
Rename some icons
2022-11-08 12:24:32 +02:00

16 lines
390 B
JavaScript

import React from 'react';
import { View } from 'react-native';
import { Icon, IconRaiseHand } from '../../../base/icons';
import styles from './styles';
export const RaisedHandIndicator = () => (
<View style = { styles.raisedHandIndicator }>
<Icon
size = { 16 }
src = { IconRaiseHand }
style = { styles.raisedHandIcon } />
</View>
);