// Generated by script, don't edit it please.
import * as React from 'react';

function Plus(props: React.SVGProps<SVGSVGElement>, svgRef?: React.Ref<SVGSVGElement>) {
  return (
    <svg width="1em" height="1em" viewBox="0 0 16 16" fill="currentColor" ref={svgRef} {...props}>
      <path d="M8 1a1 1 0 011 1v12a1 1 0 01-2 0V2a1 1 0 011-1z" />
      <path d="M2 7h12a1 1 0 010 2H2a1 1 0 010-2z" />
    </svg>
  );
}

const ForwardRef = React.forwardRef(Plus);
export default ForwardRef;
