/* eslint-disable */
import React from 'react';
import IconBase from '../IconBase';

const SvgIcon = (customProps) => {
  const attributes = Object.assign({}, customProps);

  return (
    <IconBase {...attributes}>
      <path d="M22 41.28 43.718 24 22 6.72v13.526L5 6.72v34.56l17-13.526V41.28z" ></path>
    </IconBase>
  );
};

SvgIcon.displayName = "IconMediaFastForward";
SvgIcon.defaultProps = {"viewBox":"0 0 48 48","data-name":"Layer 1","xmlns":"http://www.w3.org/2000/svg"};

export default SvgIcon;
/* eslint-enable */
