@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.13 kB
JavaScript
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-rewind" 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="M10.671 4.054 C 10.589 4.085,10.391 4.211,10.231 4.334 C 10.071 4.457,7.979 6.084,5.582 7.949 C 0.674 11.769,1.020 11.459,1.020 12.019 C 1.020 12.539,0.699 12.257,5.822 16.242 C 8.340 18.201,10.468 19.843,10.550 19.892 C 10.669 19.962,10.762 19.980,11.000 19.980 C 11.256 19.980,11.328 19.964,11.489 19.869 C 11.702 19.744,11.864 19.551,11.943 19.330 C 11.986 19.209,11.998 18.492,12.002 15.680 C 12.005 13.755,12.022 12.229,12.040 12.289 C 12.058 12.350,12.113 12.463,12.161 12.542 C 12.221 12.639,13.729 13.836,16.825 16.244 C 19.342 18.202,21.468 19.843,21.550 19.892 C 21.669 19.962,21.762 19.980,22.000 19.980 C 22.256 19.980,22.328 19.964,22.489 19.869 C 22.702 19.744,22.864 19.551,22.943 19.330 C 22.987 19.207,22.997 17.897,22.998 12.020 C 22.999 7.206,22.986 4.811,22.958 4.711 C 22.896 4.488,22.684 4.237,22.461 4.122 C 22.197 3.987,21.772 3.978,21.560 4.103 C 21.325 4.242,12.389 11.198,12.252 11.348 C 12.181 11.426,12.097 11.564,12.065 11.655 C 12.013 11.802,12.006 11.449,12.003 8.340 C 12.001 6.076,11.985 4.808,11.958 4.711 C 11.897 4.493,11.685 4.238,11.473 4.129 C 11.244 4.011,10.879 3.977,10.671 4.054 M10.000 12.019 L 10.000 16.958 6.822 14.489 C 5.073 13.131,3.644 12.011,3.644 12.000 C 3.645 11.973,9.932 7.086,9.970 7.083 C 9.986 7.081,10.000 9.303,10.000 12.019 M21.000 12.019 L 21.000 16.958 17.822 14.489 C 16.073 13.131,14.644 12.011,14.644 12.000 C 14.645 11.973,20.932 7.086,20.970 7.083 C 20.987 7.081,21.000 9.303,21.000 12.019 " stroke="none" fill="black" fill-rule="evenodd"></path></svg>`;
export const RewindIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Rewind = RewindIcon;