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.

HorizontalDotsIcon.js 238B

12345678910
  1. // @flow
  2. import React from 'react';
  3. import { Icon, IconHorizontalPoints } from '../../../base/icons';
  4. const HorizontalDotsIcon = () => (<Icon
  5. size = { 20 }
  6. src = { IconHorizontalPoints } />);
  7. export default HorizontalDotsIcon;