Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
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>
|
|
);
|