pankod/refine

View on GitHub
packages/devtools-ui/src/components/icons/search.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from "react";

export const SearchIcon = (props: React.SVGProps<SVGSVGElement>) => (
  <svg
    xmlns="http://www.w3.org/2000/svg"
    width={16}
    height={16}
    viewBox="0 0 16 16"
    fill="none"
    {...props}
  >
    <path
      fill="currentColor"
      fillRule="evenodd"
      d="M11.584 12.29a7 7 0 1 1 .707-.707l3.563 3.563a.5.5 0 0 1-.708.708l-3.562-3.563ZM13 7A6 6 0 1 1 1 7a6 6 0 0 1 12 0Z"
      clipRule="evenodd"
    />
  </svg>
);