2021-05-19 10:08:30 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { View } from 'react-native';
|
|
|
|
|
2022-11-08 10:24:32 +00:00
|
|
|
import { Icon, IconRaiseHand } from '../../../base/icons';
|
2021-05-19 10:08:30 +00:00
|
|
|
|
|
|
|
import styles from './styles';
|
|
|
|
|
|
|
|
export const RaisedHandIndicator = () => (
|
|
|
|
<View style = { styles.raisedHandIndicator }>
|
|
|
|
<Icon
|
2021-12-20 08:44:22 +00:00
|
|
|
size = { 16 }
|
2022-11-08 10:24:32 +00:00
|
|
|
src = { IconRaiseHand }
|
2021-05-21 15:35:36 +00:00
|
|
|
style = { styles.raisedHandIcon } />
|
2021-05-19 10:08:30 +00:00
|
|
|
</View>
|
|
|
|
);
|