theluyuan 38ba663466
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
init
2025-09-02 14:49:16 +08:00

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>
);