You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

RaisedHandIndicator.tsx 444B

12345678910111213141516
  1. import React from 'react';
  2. import { View } from 'react-native';
  3. import Icon from '../../../base/icons/components/Icon';
  4. import { IconRaiseHand } from '../../../base/icons/svg';
  5. import styles from './styles';
  6. export const RaisedHandIndicator = () => (
  7. <View style = { styles.raisedHandIndicator }>
  8. <Icon
  9. size = { 16 }
  10. src = { IconRaiseHand }
  11. style = { styles.raisedHandIcon } />
  12. </View>
  13. );