@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.73 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-down-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.695 3.057 C 6.466 3.129,6.256 3.299,6.128 3.516 L 6.020 3.700 6.010 10.638 L 5.999 17.575 4.770 16.354 C 3.688 15.279,3.516 15.124,3.343 15.066 C 2.863 14.905,2.382 15.084,2.128 15.516 C 2.036 15.672,2.020 15.745,2.021 16.000 C 2.021 16.212,2.043 16.341,2.095 16.440 C 2.135 16.517,3.116 17.531,4.274 18.694 C 6.567 20.996,6.571 20.999,7.000 20.999 C 7.429 20.999,7.433 20.996,9.726 18.694 C 10.884 17.531,11.865 16.517,11.905 16.440 C 11.957 16.341,11.979 16.212,11.979 16.000 C 11.980 15.745,11.964 15.672,11.872 15.516 C 11.618 15.084,11.137 14.905,10.657 15.066 C 10.484 15.124,10.312 15.279,9.230 16.354 L 8.001 17.575 7.990 10.638 L 7.980 3.700 7.872 3.516 C 7.628 3.101,7.150 2.915,6.695 3.057 M10.695 3.057 C 10.466 3.129,10.256 3.299,10.128 3.516 C 10.037 3.672,10.020 3.746,10.020 4.000 C 10.020 4.256,10.036 4.328,10.131 4.489 C 10.256 4.702,10.449 4.864,10.670 4.943 C 10.892 5.022,21.108 5.022,21.330 4.943 C 21.551 4.864,21.744 4.702,21.869 4.489 C 21.964 4.328,21.980 4.256,21.980 4.000 C 21.980 3.746,21.963 3.672,21.872 3.516 C 21.740 3.293,21.533 3.128,21.290 3.055 C 21.028 2.976,10.946 2.978,10.695 3.057 M10.695 7.057 C 10.466 7.129,10.256 7.299,10.128 7.516 C 10.037 7.672,10.020 7.746,10.020 8.000 C 10.020 8.256,10.036 8.328,10.131 8.489 C 10.256 8.702,10.449 8.864,10.670 8.943 C 10.891 9.022,18.109 9.022,18.330 8.943 C 18.551 8.864,18.744 8.702,18.869 8.489 C 18.964 8.328,18.980 8.256,18.980 8.000 C 18.980 7.746,18.963 7.672,18.872 7.516 C 18.740 7.293,18.533 7.128,18.290 7.055 C 18.030 6.977,10.945 6.979,10.695 7.057 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.889 13.021,15.111 13.021,15.330 12.943 C 15.551 12.864,15.744 12.702,15.869 12.489 C 15.964 12.328,15.980 12.256,15.980 12.000 C 15.980 11.746,15.963 11.672,15.872 11.516 C 15.740 11.293,15.533 11.128,15.290 11.055 C 15.033 10.978,10.943 10.979,10.695 11.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const ArrowDownWideNarrowIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const ArrowDownWideNarrow = ArrowDownWideNarrowIcon;