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.
| 12345678910111213141516 |
- import React from 'react';
- import { View } 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 }>
- <Icon
- size = { 16 }
- src = { IconRaiseHand }
- style = { styles.raisedHandIcon } />
- </View>
- );
|