mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-19 22:47:47 +00:00
17 lines
490 B
TypeScript
17 lines
490 B
TypeScript
import React from 'react';
|
|
import { StyleProp, View, ViewStyle } from 'react-native';
|
|
|
|
import Icon from '../../../base/icons/components/Icon';
|
|
import { IconRaiseHand } from '../../../base/icons/svg';
|
|
|
|
import styles from './styles';
|
|
|
|
export const RaisedHandIndicator = () => (
|
|
<View style = { styles.raisedHandIndicator as StyleProp<ViewStyle> }>
|
|
<Icon
|
|
size = { 16 }
|
|
src = { IconRaiseHand }
|
|
style = { styles.raisedHandIcon } />
|
|
</View>
|
|
);
|