@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.69 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-scaling" 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.383 2.230,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 15.620 L 21.980 11.700 21.871 11.514 C 21.479 10.848,20.521 10.848,20.129 11.514 L 20.020 11.700 20.000 15.480 C 19.985 18.383,19.968 19.286,19.930 19.373 C 19.842 19.572,19.672 19.761,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 4.006,3.975 4.631,4.303 4.303 C 4.621 3.985,4.414 4.000,8.537 3.998 C 11.476 3.997,12.209 3.986,12.330 3.943 C 12.551 3.864,12.744 3.702,12.869 3.489 C 12.964 3.328,12.980 3.256,12.980 3.000 C 12.980 2.746,12.963 2.672,12.872 2.516 C 12.813 2.415,12.698 2.282,12.618 2.221 C 12.320 1.994,12.426 2.000,8.404 2.005 C 6.367 2.007,4.609 2.025,4.499 2.043 M15.695 2.057 C 15.466 2.129,15.256 2.299,15.128 2.516 C 15.037 2.672,15.020 2.746,15.020 3.000 C 15.020 3.256,15.036 3.328,15.131 3.489 C 15.192 3.592,15.304 3.725,15.381 3.783 C 15.650 3.989,15.716 3.996,17.200 3.998 L 18.580 4.000 14.300 8.280 L 10.020 12.560 10.000 11.130 L 9.980 9.700 9.871 9.514 C 9.479 8.848,8.521 8.848,8.129 9.514 L 8.020 9.700 8.009 12.440 C 7.998 14.911,8.004 15.197,8.064 15.354 C 8.155 15.595,8.343 15.796,8.580 15.906 L 8.780 15.999 11.480 15.998 C 13.632 15.997,14.210 15.986,14.330 15.943 C 14.551 15.864,14.744 15.702,14.869 15.489 C 14.964 15.328,14.980 15.256,14.980 15.000 C 14.980 14.746,14.963 14.672,14.872 14.516 C 14.813 14.415,14.698 14.282,14.618 14.221 C 14.347 14.015,14.225 14.000,12.764 14.000 L 11.420 14.000 15.700 9.720 L 19.980 5.440 20.000 6.873 L 20.020 8.306 20.141 8.503 C 20.543 9.156,21.457 9.156,21.859 8.503 L 21.980 8.306 21.991 5.563 C 22.002 3.089,21.996 2.803,21.936 2.646 C 21.845 2.405,21.657 2.204,21.420 2.094 L 21.220 2.001 18.540 2.003 C 16.466 2.005,15.823 2.017,15.695 2.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const ScalingIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Scaling = ScalingIcon;