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

123456789101112131415
  1. // @flow
  2. import React from 'react';
  3. import { Icon, IconRaisedHandHollow } from '../../base/icons';
  4. import { RaisedHandIndicatorBackground } from './styled';
  5. export const RaisedHandIndicator = () => (
  6. <RaisedHandIndicatorBackground>
  7. <Icon
  8. size = { 15 }
  9. src = { IconRaisedHandHollow } />
  10. </RaisedHandIndicatorBackground>
  11. );