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.js 404B

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