@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.26 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-timer" 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="M9.695 1.057 C 9.466 1.129,9.256 1.299,9.128 1.516 C 9.037 1.672,9.020 1.746,9.020 2.000 C 9.020 2.256,9.036 2.328,9.131 2.489 C 9.256 2.702,9.449 2.864,9.670 2.943 C 9.889 3.021,14.111 3.021,14.330 2.943 C 14.551 2.864,14.744 2.702,14.869 2.489 C 14.964 2.328,14.980 2.256,14.980 2.000 C 14.980 1.746,14.963 1.672,14.872 1.516 C 14.740 1.293,14.533 1.128,14.290 1.055 C 14.033 0.978,9.943 0.979,9.695 1.057 M11.340 5.024 C 10.026 5.160,9.091 5.415,8.060 5.918 C 6.244 6.804,4.840 8.202,3.939 10.020 C 2.688 12.542,2.688 15.458,3.939 17.980 C 4.404 18.918,4.897 19.609,5.621 20.337 C 8.349 23.077,12.483 23.777,15.940 22.084 C 16.871 21.628,17.631 21.085,18.358 20.358 C 21.079 17.637,21.771 13.506,20.084 10.060 C 18.773 7.384,16.266 5.546,13.320 5.101 C 12.911 5.039,11.662 4.991,11.340 5.024 M13.102 7.098 C 16.099 7.551,18.491 9.985,18.924 13.020 C 18.990 13.483,18.990 14.517,18.924 14.980 C 18.487 18.047,16.126 20.424,13.020 20.926 C 12.607 20.992,11.393 20.992,10.980 20.926 C 7.873 20.424,5.513 18.047,5.076 14.980 C 4.967 14.217,5.022 13.093,5.205 12.340 C 5.753 10.084,7.433 8.214,9.620 7.427 C 10.250 7.200,10.715 7.102,11.540 7.023 C 11.813 6.997,12.726 7.041,13.102 7.098 M14.640 10.069 C 14.488 10.121,14.208 10.381,12.847 11.735 C 11.960 12.618,11.186 13.421,11.127 13.520 C 11.037 13.672,11.020 13.746,11.020 14.000 C 11.020 14.257,11.036 14.327,11.133 14.492 C 11.413 14.968,12.033 15.138,12.492 14.865 C 12.707 14.738,15.807 11.626,15.905 11.440 C 15.957 11.341,15.979 11.212,15.979 11.000 C 15.980 10.745,15.964 10.672,15.872 10.516 C 15.617 10.083,15.121 9.902,14.640 10.069 " stroke="none" fill="black" fill-rule="evenodd"></path></svg>`;
export const TimerIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Timer = TimerIcon;