@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.87 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-square-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="M4.499 2.043 C 3.380 2.232,2.461 3.048,2.114 4.160 L 2.020 4.460 2.020 12.000 L 2.020 19.540 2.114 19.840 C 2.422 20.827,3.173 21.578,4.160 21.886 L 4.460 21.980 12.000 21.980 L 19.540 21.980 19.840 21.886 C 20.827 21.578,21.578 20.827,21.886 19.840 L 21.980 19.540 21.980 12.000 L 21.980 4.460 21.886 4.160 C 21.581 3.182,20.832 2.428,19.861 2.121 L 19.540 2.020 12.120 2.014 C 8.039 2.011,4.609 2.024,4.499 2.043 M19.310 4.061 C 19.589 4.144,19.856 4.411,19.939 4.690 C 19.993 4.870,20.000 5.755,20.000 12.001 C 20.000 17.907,19.991 19.138,19.945 19.290 C 19.872 19.533,19.707 19.740,19.484 19.872 L 19.300 19.980 12.000 19.980 L 4.700 19.980 4.516 19.872 C 4.415 19.813,4.284 19.700,4.225 19.623 C 3.986 19.309,4.000 19.795,4.000 12.022 C 4.000 5.758,4.007 4.870,4.061 4.690 C 4.140 4.421,4.412 4.143,4.673 4.063 C 4.964 3.974,19.009 3.971,19.310 4.061 M8.695 7.057 C 8.466 7.129,8.256 7.299,8.128 7.516 C 8.037 7.672,8.020 7.746,8.020 8.000 C 8.020 8.256,8.036 8.328,8.131 8.489 C 8.256 8.702,8.449 8.864,8.670 8.943 C 8.891 9.022,16.109 9.022,16.330 8.943 C 16.551 8.864,16.744 8.702,16.869 8.489 C 16.964 8.328,16.980 8.256,16.980 8.000 C 16.980 7.746,16.963 7.672,16.872 7.516 C 16.740 7.293,16.533 7.128,16.290 7.055 C 16.030 6.977,8.945 6.979,8.695 7.057 M7.695 11.057 C 7.466 11.129,7.256 11.299,7.128 11.516 C 7.037 11.672,7.020 11.746,7.020 12.000 C 7.020 12.256,7.036 12.328,7.131 12.489 C 7.256 12.702,7.449 12.864,7.670 12.943 C 7.891 13.022,14.109 13.022,14.330 12.943 C 14.551 12.864,14.744 12.702,14.869 12.489 C 14.964 12.328,14.980 12.256,14.980 12.000 C 14.980 11.746,14.963 11.672,14.872 11.516 C 14.740 11.293,14.533 11.128,14.290 11.055 C 14.030 10.977,7.945 10.979,7.695 11.057 M10.695 15.057 C 10.466 15.129,10.256 15.299,10.128 15.516 C 10.037 15.672,10.020 15.746,10.020 16.000 C 10.020 16.256,10.036 16.328,10.131 16.489 C 10.256 16.702,10.449 16.864,10.670 16.943 C 10.890 17.021,16.110 17.021,16.330 16.943 C 16.551 16.864,16.744 16.702,16.869 16.489 C 16.964 16.328,16.980 16.256,16.980 16.000 C 16.980 15.746,16.963 15.672,16.872 15.516 C 16.740 15.293,16.533 15.128,16.290 15.055 C 16.031 14.977,10.944 14.979,10.695 15.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const SquareChartGanttIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const SquareChartGantt = SquareChartGanttIcon;