您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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