@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.07 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-equal-approximately" 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="M7.520 7.044 C 6.563 7.167,5.569 7.506,4.741 7.991 C 4.329 8.233,4.148 8.416,4.060 8.681 C 3.830 9.374,4.380 10.063,5.104 9.988 C 5.265 9.971,5.412 9.914,5.676 9.762 C 6.647 9.207,7.412 9.000,8.500 9.000 C 9.656 9.000,10.393 9.215,11.523 9.882 C 12.157 10.255,12.556 10.441,13.146 10.638 C 15.206 11.324,17.498 11.073,19.341 9.960 C 19.714 9.734,19.848 9.588,19.946 9.301 C 20.172 8.638,19.600 7.931,18.902 8.010 C 18.719 8.030,18.687 8.045,18.040 8.392 C 17.262 8.809,16.433 9.011,15.500 9.011 C 14.840 9.011,14.356 8.935,13.773 8.740 C 13.300 8.582,13.023 8.449,12.430 8.093 C 11.455 7.508,10.506 7.174,9.441 7.042 C 9.050 6.994,7.902 6.994,7.520 7.044 M7.520 13.044 C 6.563 13.167,5.569 13.506,4.741 13.991 C 4.329 14.233,4.148 14.416,4.060 14.681 C 3.830 15.374,4.380 16.063,5.104 15.988 C 5.265 15.971,5.412 15.914,5.676 15.762 C 6.647 15.207,7.412 15.000,8.500 15.000 C 9.656 15.000,10.393 15.215,11.523 15.882 C 12.157 16.255,12.556 16.441,13.146 16.638 C 15.206 17.324,17.498 17.073,19.341 15.960 C 19.714 15.734,19.848 15.588,19.946 15.301 C 20.172 14.638,19.600 13.931,18.902 14.010 C 18.719 14.030,18.687 14.045,18.040 14.392 C 17.262 14.809,16.433 15.011,15.500 15.011 C 14.840 15.011,14.356 14.935,13.773 14.740 C 13.300 14.582,13.023 14.449,12.430 14.093 C 11.455 13.508,10.506 13.174,9.441 13.042 C 9.050 12.994,7.902 12.994,7.520 13.044 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const EqualApproximatelyIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const EqualApproximately = EqualApproximatelyIcon;