@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.03 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-activity" 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="M8.700 1.035 C 8.287 1.145,7.925 1.498,7.799 1.915 C 7.755 2.061,7.199 4.032,6.563 6.296 C 5.299 10.793,5.357 10.627,4.982 10.859 L 4.787 10.980 3.263 11.001 C 2.187 11.016,1.707 11.036,1.627 11.071 C 1.430 11.157,1.239 11.327,1.128 11.516 C 1.037 11.672,1.020 11.746,1.020 12.000 C 1.020 12.257,1.036 12.327,1.133 12.492 C 1.262 12.712,1.502 12.901,1.730 12.963 C 1.833 12.990,2.430 13.000,3.454 12.990 C 4.796 12.978,5.054 12.966,5.260 12.906 C 5.843 12.736,6.428 12.356,6.800 11.907 C 7.185 11.442,7.250 11.256,8.148 8.050 C 8.606 6.417,8.989 5.081,9.000 5.081 C 9.011 5.081,10.072 8.829,11.358 13.411 C 12.643 17.992,13.738 21.883,13.791 22.058 C 13.877 22.341,13.914 22.402,14.134 22.620 C 14.329 22.814,14.428 22.879,14.614 22.937 C 15.284 23.146,15.978 22.774,16.195 22.092 C 16.243 21.942,16.802 19.968,17.437 17.704 C 18.700 13.207,18.642 13.373,19.018 13.141 L 19.213 13.020 20.757 13.000 L 22.300 12.980 22.492 12.867 C 23.274 12.408,23.102 11.232,22.224 11.038 C 22.085 11.007,21.539 10.998,20.500 11.009 C 19.211 11.023,18.944 11.036,18.740 11.095 C 18.168 11.260,17.568 11.648,17.203 12.089 C 16.815 12.558,16.751 12.740,15.852 15.949 C 15.394 17.583,15.011 18.919,15.000 18.919 C 14.989 18.919,13.928 15.171,12.643 10.590 C 11.357 6.008,10.261 2.120,10.207 1.948 C 10.033 1.395,9.619 1.051,9.090 1.019 C 8.942 1.010,8.766 1.018,8.700 1.035 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const ActivityIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Activity = ActivityIcon;