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

function Search(props: React.SVGProps<SVGSVGElement>, svgRef?: React.Ref<SVGSVGElement>) {
  return (
    <svg width="1em" height="1em" viewBox="0 0 14 14" fill="currentColor" ref={svgRef} {...props}>
      <path d="M9.293 10.707a.999.999 0 111.414-1.414l3 3a.999.999 0 11-1.414 1.414l-3-3z" />
      <path d="M6 10a4 4 0 100-8 4 4 0 000 8zm0 2A6 6 0 116 0a6 6 0 010 12z" />
    </svg>
  );
}

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