Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

RaisedHandIndicator.js 369B

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