@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.6 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-gantt" 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 M9.695 5.057 C 9.466 5.129,9.256 5.299,9.128 5.516 C 9.037 5.672,9.020 5.746,9.020 6.000 C 9.020 6.256,9.036 6.328,9.131 6.489 C 9.256 6.702,9.449 6.864,9.670 6.943 C 9.892 7.022,18.108 7.022,18.330 6.943 C 18.551 6.864,18.744 6.702,18.869 6.489 C 18.964 6.328,18.980 6.256,18.980 6.000 C 18.980 5.746,18.963 5.672,18.872 5.516 C 18.740 5.293,18.533 5.128,18.290 5.055 C 18.029 4.976,9.946 4.979,9.695 5.057 M7.695 10.057 C 7.466 10.129,7.256 10.299,7.128 10.516 C 7.037 10.672,7.020 10.746,7.020 11.000 C 7.020 11.256,7.036 11.328,7.131 11.489 C 7.256 11.702,7.449 11.864,7.670 11.943 C 7.891 12.022,15.109 12.022,15.330 11.943 C 15.551 11.864,15.744 11.702,15.869 11.489 C 15.964 11.328,15.980 11.256,15.980 11.000 C 15.980 10.746,15.963 10.672,15.872 10.516 C 15.740 10.293,15.533 10.128,15.290 10.055 C 15.030 9.977,7.945 9.979,7.695 10.057 M11.695 15.057 C 11.466 15.129,11.256 15.299,11.128 15.516 C 11.037 15.672,11.020 15.746,11.020 16.000 C 11.020 16.256,11.036 16.328,11.131 16.489 C 11.256 16.702,11.449 16.864,11.670 16.943 C 11.891 17.022,18.109 17.022,18.330 16.943 C 18.551 16.864,18.744 16.702,18.869 16.489 C 18.964 16.328,18.980 16.256,18.980 16.000 C 18.980 15.746,18.963 15.672,18.872 15.516 C 18.740 15.293,18.533 15.128,18.290 15.055 C 18.030 14.977,11.945 14.979,11.695 15.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const ChartGanttIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const ChartGantt = ChartGanttIcon;