import * as React from 'react';

import { IconWrapper } from '../IconWrapper';
import { Icon } from '../index';

/**
 * @name Browse
 * @description Browse Icon
 */
const Browse: React.FC<Icon> = ({ fill, ...rest }) => (
  <IconWrapper {...rest}>
    <path
      d="M50 8L13.8889 8L13.8889 13.8333L50 13.8333L50 8ZM50 22.5833L22.2222 22.5833L22.2222 28.4167L50 28.4167L50 22.5833ZM50 43L50 37.1667L13.8889 37.1667L13.8889 43L50 43ZM-5.3794e-07 15.0292L9.94444 25.5L1.29284e-06 35.9708L3.91667 40.0833L17.8056 25.5L3.91667 10.9167L-5.3794e-07 15.0292Z"
      fill={fill}
    />
  </IconWrapper>
);

export { Browse, Browse as default };
