@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.1 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-big-left-dash" 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="M11.640 4.068 C 11.484 4.121,10.978 4.610,7.847 7.735 C 5.771 9.806,4.189 11.417,4.127 11.520 C 4.036 11.672,4.020 11.746,4.020 12.000 C 4.020 12.254,4.036 12.328,4.127 12.480 C 4.189 12.583,5.771 14.194,7.847 16.265 C 11.287 19.698,11.470 19.874,11.675 19.940 C 12.205 20.112,12.759 19.845,12.943 19.330 C 12.984 19.215,12.997 18.814,12.998 17.592 L 13.000 16.005 14.150 15.992 L 15.300 15.980 15.492 15.867 C 15.710 15.739,15.901 15.498,15.961 15.276 C 15.988 15.177,15.998 14.005,15.991 11.912 L 15.980 8.700 15.872 8.516 C 15.813 8.415,15.698 8.282,15.618 8.221 C 15.356 8.022,15.203 8.000,14.054 8.000 L 13.000 8.000 13.000 6.427 C 13.000 4.633,12.996 4.602,12.697 4.303 C 12.412 4.019,12.032 3.934,11.640 4.068 M11.131 9.489 C 11.192 9.592,11.304 9.725,11.381 9.783 C 11.643 9.983,11.738 9.996,12.910 9.998 L 14.000 10.000 14.000 12.000 L 14.000 14.000 12.946 14.000 C 11.797 14.000,11.644 14.022,11.382 14.221 C 11.302 14.282,11.187 14.415,11.128 14.516 C 11.021 14.698,11.020 14.708,11.000 15.630 L 10.980 16.561 8.700 14.280 L 6.420 12.000 8.700 9.720 L 10.980 7.439 11.000 8.370 C 11.020 9.298,11.020 9.300,11.131 9.489 M18.695 8.057 C 18.466 8.129,18.256 8.299,18.128 8.516 L 18.020 8.700 18.020 12.003 L 18.020 15.306 18.141 15.503 C 18.543 16.156,19.457 16.156,19.859 15.503 L 19.980 15.306 19.980 12.003 L 19.980 8.700 19.872 8.516 C 19.628 8.101,19.150 7.915,18.695 8.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const ArrowBigLeftDashIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const ArrowBigLeftDash = ArrowBigLeftDashIcon;