Files
jitsi-meet/react/features/participants-pane/components/native/RaisedHandIndicator.js
Robert Pintilii a7bf037363 feat(raise-hand) Update raised hand design (#10651)
Updated indicator color and background color
Added border on thumbnails
Web and Native
2021-12-20 10:44:22 +02:00

16 lines
404 B
JavaScript

import React from 'react';
import { View } from 'react-native';
import { Icon, IconRaisedHandHollow } from '../../../base/icons';
import styles from './styles';
export const RaisedHandIndicator = () => (
<View style = { styles.raisedHandIndicator }>
<Icon
size = { 16 }
src = { IconRaisedHandHollow }
style = { styles.raisedHandIcon } />
</View>
);