import * as React from 'react';
import type { SVGProps } from 'react';
const SvgNoResultsIcon = (props: SVGProps<SVGSVGElement>) => (
  <svg
    xmlns="http://www.w3.org/2000/svg"
    width={60}
    height={60}
    viewBox="0 0 640 512"
    {...props}
  >
    <path
      fill="currentColor"
      d="M25.9 3.4C19-2 8.9-.8 3.4 6.1s-4.2 17 2.7 22.5l608 480c6.9 5.5 17 4.3 22.5-2.6s4.3-17-2.6-22.5zm541 93.3c5.9-7.1 9.1-16 9.1-25.2 0-21.8-17.7-39.5-39.5-39.5H139.6l40.5 32h356.4c4.2 0 7.5 3.4 7.5 7.5 0 1.8-.6 3.4-1.7 4.8l-137 165.5 25.1 19.8zM352 362.8v83.3c0 1-.8 1.9-1.9 1.9-.4 0-.8-.1-1.1-.4l-61-47.4v-87.9L256 287v113.2c0 9.9 4.6 19.2 12.4 25.3l61 47.4c5.9 4.6 13.3 7.1 20.8 7.1 18.7 0 33.9-15.2 33.9-33.9v-58l-32-25.3z"
    />
  </svg>
);
export default SvgNoResultsIcon;
