@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.24 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-chart-spline" 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 2.057 C 2.466 2.129,2.256 2.299,2.128 2.516 L 2.020 2.700 2.020 11.120 L 2.020 19.540 2.114 19.840 C 2.418 20.816,3.149 21.554,4.140 21.886 L 4.420 21.980 12.773 21.991 C 18.322 21.998,21.177 21.988,21.277 21.961 C 21.498 21.901,21.739 21.710,21.867 21.492 C 21.964 21.327,21.980 21.257,21.980 21.000 C 21.980 20.746,21.963 20.672,21.872 20.516 C 21.761 20.328,21.572 20.158,21.373 20.070 C 21.284 20.031,19.486 20.016,12.980 20.000 L 4.700 19.980 4.516 19.872 C 4.328 19.761,4.158 19.572,4.070 19.373 C 4.031 19.284,4.016 17.486,4.000 10.980 L 3.980 2.700 3.872 2.516 C 3.628 2.101,3.150 1.915,2.695 2.057 M19.650 4.066 C 19.557 4.099,19.401 4.204,19.303 4.299 C 19.152 4.446,19.109 4.525,19.019 4.826 C 18.450 6.736,17.692 8.384,16.826 9.600 C 16.476 10.092,15.882 10.669,15.560 10.830 C 15.040 11.090,14.710 11.041,14.363 10.652 C 14.255 10.530,14.003 10.193,13.803 9.903 C 13.345 9.236,12.988 8.818,12.670 8.577 C 11.861 7.966,10.828 7.836,9.891 8.230 C 8.456 8.833,7.391 10.604,6.504 13.860 C 6.160 15.124,5.992 15.894,6.014 16.112 C 6.076 16.740,6.725 17.150,7.322 16.939 C 7.544 16.861,7.730 16.718,7.838 16.543 C 7.887 16.463,8.059 15.877,8.239 15.172 C 8.412 14.494,8.628 13.700,8.719 13.406 C 9.294 11.544,10.067 10.257,10.728 10.061 C 11.264 9.902,11.481 10.055,12.200 11.103 C 12.854 12.055,13.266 12.462,13.860 12.745 C 14.599 13.097,15.509 13.075,16.347 12.683 C 17.207 12.280,18.110 11.363,18.918 10.073 C 19.496 9.149,20.166 7.708,20.595 6.465 C 20.909 5.557,21.013 5.139,20.987 4.889 C 20.922 4.253,20.265 3.849,19.650 4.066 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const ChartSplineIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const ChartSpline = ChartSplineIcon;