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 784B

1234567891011121314151617181920212223242526272829
  1. import React from 'react';
  2. import { makeStyles } from 'tss-react/mui';
  3. import Icon from '../../../base/icons/components/Icon';
  4. import { IconRaiseHand } from '../../../base/icons/svg';
  5. const useStyles = makeStyles()(theme => {
  6. return {
  7. indicator: {
  8. backgroundColor: theme.palette.warning02,
  9. borderRadius: `${Number(theme.shape.borderRadius) / 2}px`,
  10. height: '24px',
  11. width: '24px'
  12. }
  13. };
  14. });
  15. export const RaisedHandIndicator = () => {
  16. const { classes: styles, theme } = useStyles();
  17. return (
  18. <div className = { styles.indicator }>
  19. <Icon
  20. color = { theme.palette.icon04 }
  21. size = { 16 }
  22. src = { IconRaiseHand } />
  23. </div>
  24. );
  25. };