@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.48 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-indian-rupee" 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="M5.695 2.057 C 5.466 2.129,5.256 2.299,5.128 2.516 C 5.037 2.672,5.020 2.746,5.020 3.000 C 5.020 3.256,5.036 3.328,5.131 3.489 C 5.192 3.592,5.304 3.725,5.381 3.783 C 5.656 3.993,5.689 3.996,7.541 3.998 C 8.488 3.999,9.415 4.019,9.601 4.041 C 10.970 4.209,11.959 4.890,12.559 6.078 C 12.669 6.296,12.880 6.879,12.880 6.965 C 12.880 6.985,11.348 7.000,9.386 7.000 C 5.595 7.000,5.678 6.995,5.382 7.221 C 5.302 7.282,5.187 7.415,5.128 7.516 C 5.037 7.672,5.020 7.746,5.020 8.000 C 5.020 8.256,5.036 8.328,5.131 8.489 C 5.256 8.702,5.449 8.864,5.670 8.943 C 5.791 8.986,6.506 8.997,9.350 8.998 C 11.331 8.999,12.880 9.015,12.880 9.035 C 12.880 9.121,12.669 9.704,12.559 9.922 C 12.018 10.994,11.220 11.616,10.015 11.905 C 9.787 11.960,9.397 11.975,7.720 11.995 C 5.751 12.019,5.696 12.022,5.540 12.106 C 5.204 12.288,5.002 12.622,5.001 13.003 C 4.999 13.459,4.808 13.261,9.560 17.730 C 12.879 20.852,13.947 21.834,14.100 21.905 C 14.465 22.077,14.846 22.014,15.160 21.733 C 15.389 21.527,15.488 21.303,15.488 20.989 C 15.488 20.543,15.606 20.668,11.922 17.200 L 8.545 14.020 9.182 13.995 C 10.210 13.954,11.068 13.748,11.857 13.352 C 13.400 12.576,14.473 11.140,14.861 9.330 L 14.932 9.000 16.556 8.998 C 18.303 8.996,18.346 8.992,18.619 8.783 C 18.696 8.725,18.808 8.592,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.813 7.415,18.698 7.282,18.618 7.221 C 18.341 7.010,18.244 7.000,16.519 7.000 L 14.932 7.000 14.861 6.670 C 14.660 5.735,14.258 4.864,13.678 4.110 L 13.593 4.000 15.887 3.998 C 17.698 3.997,18.212 3.985,18.330 3.943 C 18.551 3.864,18.744 3.702,18.869 3.489 C 18.964 3.328,18.980 3.256,18.980 3.000 C 18.980 2.746,18.963 2.672,18.872 2.516 C 18.740 2.293,18.533 2.128,18.290 2.055 C 18.028 1.976,5.947 1.978,5.695 2.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const IndianRupeeIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const IndianRupee = IndianRupeeIcon;