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

function Tag(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="M6.586 2H2v4.586l8 8L14.586 10l-8-8zM7 1l8.293 8.293a.999.999 0 010 1.414l-4.586 4.586a.999.999 0 01-1.414 0L1 7V2a1 1 0 011-1h5z" />
      <path d="M6 5a1 1 0 11-2 0 1 1 0 012 0z" />
    </svg>
  );
}

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