ResetIcon.js 439 B

123456789101112131415
  1. import React from 'react';
  2. export function ResetIcon() {
  3. return /*#__PURE__*/React.createElement("svg", {
  4. width: "20",
  5. height: "20",
  6. viewBox: "0 0 20 20"
  7. }, /*#__PURE__*/React.createElement("path", {
  8. d: "M10 10l5.09-5.09L10 10l5.09 5.09L10 10zm0 0L4.91 4.91 10 10l-5.09 5.09L10 10z",
  9. stroke: "currentColor",
  10. fill: "none",
  11. fillRule: "evenodd",
  12. strokeLinecap: "round",
  13. strokeLinejoin: "round"
  14. }));
  15. }