@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.79 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-arrow-up-wide-narrow" 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="M6.580 3.096 C 6.422 3.172,5.940 3.634,4.274 5.306 C 3.116 6.469,2.138 7.481,2.101 7.555 C 1.872 8.010,2.056 8.601,2.508 8.867 C 2.673 8.964,2.742 8.980,3.000 8.979 C 3.213 8.979,3.341 8.957,3.440 8.905 C 3.517 8.864,4.124 8.289,4.790 7.627 L 5.999 6.423 6.010 13.364 L 6.020 20.306 6.141 20.503 C 6.543 21.156,7.457 21.156,7.859 20.503 L 7.980 20.306 7.990 13.364 L 8.001 6.423 9.210 7.627 C 9.876 8.289,10.483 8.864,10.560 8.905 C 10.659 8.957,10.787 8.979,11.000 8.979 C 11.258 8.980,11.327 8.964,11.492 8.867 C 11.714 8.737,11.901 8.498,11.965 8.264 C 12.019 8.061,11.989 7.733,11.899 7.555 C 11.862 7.481,10.884 6.469,9.726 5.306 C 7.433 3.004,7.429 3.001,7.000 3.001 C 6.851 3.001,6.716 3.031,6.580 3.096 M10.695 11.057 C 10.466 11.129,10.256 11.299,10.128 11.516 C 10.037 11.672,10.020 11.746,10.020 12.000 C 10.020 12.256,10.036 12.328,10.131 12.489 C 10.256 12.702,10.449 12.864,10.670 12.943 C 10.892 13.022,21.108 13.022,21.330 12.943 C 21.551 12.864,21.744 12.702,21.869 12.489 C 21.964 12.328,21.980 12.256,21.980 12.000 C 21.980 11.746,21.963 11.672,21.872 11.516 C 21.740 11.293,21.533 11.128,21.290 11.055 C 21.028 10.976,10.946 10.978,10.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.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,10.945 14.979,10.695 15.057 M10.695 19.057 C 10.466 19.129,10.256 19.299,10.128 19.516 C 10.037 19.672,10.020 19.746,10.020 20.000 C 10.020 20.256,10.036 20.328,10.131 20.489 C 10.256 20.702,10.449 20.864,10.670 20.943 C 10.889 21.021,15.111 21.021,15.330 20.943 C 15.551 20.864,15.744 20.702,15.869 20.489 C 15.964 20.328,15.980 20.256,15.980 20.000 C 15.980 19.746,15.963 19.672,15.872 19.516 C 15.740 19.293,15.533 19.128,15.290 19.055 C 15.033 18.978,10.943 18.979,10.695 19.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const ArrowUpWideNarrowIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const ArrowUpWideNarrow = ArrowUpWideNarrowIcon;