SelectIcon.js 546 B

12345678910111213141516171819
  1. import React from 'react';
  2. export function SelectIcon() {
  3. return /*#__PURE__*/React.createElement("svg", {
  4. className: "DocSearch-Hit-Select-Icon",
  5. width: "20",
  6. height: "20",
  7. viewBox: "0 0 20 20"
  8. }, /*#__PURE__*/React.createElement("g", {
  9. stroke: "currentColor",
  10. fill: "none",
  11. fillRule: "evenodd",
  12. strokeLinecap: "round",
  13. strokeLinejoin: "round"
  14. }, /*#__PURE__*/React.createElement("path", {
  15. d: "M18 3v4c0 2-2 4-4 4H2"
  16. }), /*#__PURE__*/React.createElement("path", {
  17. d: "M8 17l-6-6 6-6"
  18. })));
  19. }