UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.24 kB
import { jsx as _jsx } from "react/jsx-runtime"; /* eslint-disable no-shadow-restricted-names */ import { Icon } from "@react-three/uikit"; import { forwardRef } from "react"; const text = `<svg class="lucide lucide-undo-dot" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M2.695 6.057 C 2.466 6.129,2.256 6.299,2.128 6.516 L 2.020 6.700 2.009 9.940 C 1.999 12.874,2.004 13.196,2.064 13.354 C 2.155 13.595,2.343 13.796,2.580 13.906 L 2.780 13.999 5.980 13.998 C 8.549 13.997,9.210 13.986,9.330 13.943 C 9.551 13.864,9.744 13.702,9.869 13.489 C 9.964 13.328,9.980 13.256,9.980 13.000 C 9.980 12.746,9.963 12.672,9.872 12.516 C 9.761 12.328,9.572 12.158,9.373 12.070 C 9.290 12.033,8.773 12.015,7.443 12.000 L 5.626 11.980 6.183 11.480 C 7.198 10.568,7.683 10.219,8.460 9.840 C 10.881 8.661,13.640 8.747,15.980 10.074 C 17.377 10.866,18.542 12.132,19.242 13.620 C 19.706 14.605,19.910 15.459,19.994 16.771 C 20.027 17.278,20.039 17.338,20.146 17.511 C 20.542 18.154,21.460 18.152,21.856 17.508 C 21.957 17.344,21.977 17.264,21.992 16.975 C 22.013 16.582,21.944 15.799,21.838 15.214 C 21.526 13.496,20.789 11.941,19.634 10.557 C 18.101 8.724,15.922 7.506,13.468 7.113 C 12.847 7.014,11.561 6.995,10.900 7.076 C 9.459 7.252,8.212 7.655,7.060 8.317 C 6.264 8.775,5.764 9.160,4.633 10.187 C 4.311 10.480,4.037 10.720,4.025 10.720 C 4.013 10.720,3.998 9.816,3.991 8.710 L 3.980 6.700 3.872 6.516 C 3.628 6.101,3.150 5.915,2.695 6.057 M11.477 15.073 C 10.806 15.249,10.238 15.823,10.060 16.508 C 9.941 16.962,10.003 17.492,10.225 17.930 C 10.361 18.199,10.801 18.639,11.070 18.775 C 11.659 19.073,12.341 19.073,12.930 18.775 C 13.196 18.640,13.638 18.200,13.771 17.937 C 13.994 17.498,14.052 17.007,13.940 16.529 C 13.858 16.182,13.720 15.927,13.465 15.653 C 13.074 15.232,12.560 15.005,12.000 15.005 C 11.857 15.005,11.622 15.036,11.477 15.073 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const UndoDotIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const UndoDot = UndoDotIcon;