NoResultsIcon.js 468 B

123456789101112131415
  1. import React from 'react';
  2. export function NoResultsIcon() {
  3. return /*#__PURE__*/React.createElement("svg", {
  4. width: "40",
  5. height: "40",
  6. viewBox: "0 0 20 20",
  7. fill: "none",
  8. fillRule: "evenodd",
  9. stroke: "currentColor",
  10. strokeLinecap: "round",
  11. strokeLinejoin: "round"
  12. }, /*#__PURE__*/React.createElement("path", {
  13. d: "M15.5 4.8c2 3 1.7 7-1 9.7h0l4.3 4.3-4.3-4.3a7.8 7.8 0 01-9.8 1m-2.2-2.2A7.8 7.8 0 0113.2 2.4M2 18L18 2"
  14. }));
  15. }