@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.18 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-feather" 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="M15.200 1.044 C 13.973 1.183,12.805 1.650,11.780 2.413 C 11.578 2.563,10.180 3.931,7.977 6.135 L 4.493 9.620 4.327 9.960 C 3.999 10.628,4.021 10.303,4.012 14.678 L 4.003 18.575 2.586 19.998 C 1.806 20.780,1.138 21.481,1.101 21.555 C 0.872 22.009,1.056 22.601,1.508 22.867 C 1.673 22.964,1.742 22.980,2.000 22.979 C 2.212 22.979,2.341 22.957,2.440 22.905 C 2.517 22.864,3.221 22.193,4.004 21.413 L 5.427 19.994 9.189 19.999 C 13.238 20.003,13.227 20.003,13.788 19.793 C 14.284 19.608,14.466 19.440,17.943 15.953 C 19.960 13.931,21.404 12.451,21.548 12.259 C 23.220 10.037,23.460 7.152,22.175 4.721 C 21.237 2.945,19.506 1.618,17.560 1.180 C 16.800 1.009,15.947 0.960,15.200 1.044 M16.846 3.078 C 17.845 3.250,18.707 3.684,19.436 4.379 C 20.680 5.566,21.208 7.219,20.897 8.951 C 20.829 9.326,20.649 9.864,20.471 10.220 C 20.156 10.851,19.947 11.098,18.485 12.570 L 17.064 14.000 14.243 14.000 L 11.421 14.000 14.126 11.290 C 15.614 9.800,16.865 8.517,16.905 8.440 C 16.957 8.341,16.979 8.212,16.979 8.000 C 16.980 7.745,16.964 7.672,16.872 7.516 C 16.618 7.084,16.139 6.906,15.657 7.065 C 15.476 7.125,15.072 7.517,10.729 11.855 L 5.998 16.580 6.009 13.820 C 6.019 11.208,6.024 11.051,6.096 10.900 C 6.147 10.792,7.235 9.676,9.476 7.436 C 12.462 4.450,12.819 4.107,13.181 3.868 C 14.316 3.120,15.547 2.854,16.846 3.078 M14.619 16.460 C 13.816 17.322,13.227 17.863,13.016 17.935 C 12.848 17.992,12.513 18.000,10.123 18.000 L 7.421 18.000 8.420 17.000 L 9.419 16.000 12.234 16.000 L 15.048 16.000 14.619 16.460 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const FeatherIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Feather = FeatherIcon;