@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.04 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-droplet" 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.664 2.063 C 11.294 2.199,11.091 2.465,10.982 2.960 C 10.666 4.395,9.924 5.917,8.933 7.160 C 8.563 7.625,7.880 8.303,7.280 8.802 C 6.077 9.803,5.301 10.751,4.742 11.900 C 4.261 12.888,4.056 13.688,4.012 14.742 C 3.937 16.556,4.533 18.406,5.674 19.900 C 5.933 20.239,6.606 20.925,6.960 21.211 C 8.378 22.357,10.190 23.000,12.000 23.000 C 13.810 23.000,15.622 22.357,17.040 21.211 C 17.394 20.925,18.067 20.239,18.326 19.900 C 19.467 18.406,20.063 16.556,19.988 14.742 C 19.943 13.669,19.712 12.789,19.220 11.820 C 18.645 10.687,17.891 9.777,16.720 8.802 C 16.120 8.303,15.437 7.625,15.067 7.160 C 14.193 6.064,13.459 4.646,13.142 3.440 C 12.896 2.507,12.887 2.484,12.698 2.300 C 12.413 2.023,12.019 1.933,11.664 2.063 M12.040 6.117 C 12.040 6.191,12.575 7.108,12.881 7.558 C 13.561 8.560,14.329 9.406,15.280 10.201 C 15.988 10.794,16.362 11.160,16.735 11.625 C 17.682 12.806,18.087 14.063,17.967 15.448 C 17.912 16.079,17.838 16.452,17.671 16.940 C 16.988 18.944,15.291 20.428,13.160 20.885 C 12.810 20.960,12.617 20.975,12.000 20.975 C 11.383 20.975,11.190 20.960,10.840 20.885 C 8.706 20.427,7.013 18.947,6.329 16.940 C 6.162 16.452,6.088 16.079,6.033 15.448 C 5.913 14.063,6.318 12.806,7.265 11.625 C 7.638 11.160,8.012 10.794,8.720 10.201 C 9.341 9.682,10.017 9.001,10.466 8.445 C 10.901 7.905,11.522 6.972,11.780 6.470 C 11.960 6.120,12.040 6.011,12.040 6.117 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const DropletIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Droplet = DropletIcon;