mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-19 12:47:48 +00:00
16 lines
404 B
JavaScript
16 lines
404 B
JavaScript
import React from 'react';
|
|
import { View } from 'react-native';
|
|
|
|
import { Icon, IconRaisedHandHollow } from '../../../base/icons';
|
|
|
|
import styles from './styles';
|
|
|
|
export const RaisedHandIndicator = () => (
|
|
<View style = { styles.raisedHandIndicator }>
|
|
<Icon
|
|
size = { 15 }
|
|
src = { IconRaisedHandHollow }
|
|
style = { styles.raisedHandIcon } />
|
|
</View>
|
|
);
|