UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.27 kB
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-venus" 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.540 2.023 C 10.478 2.125,9.692 2.335,8.910 2.726 C 6.838 3.762,5.448 5.666,5.074 7.980 C 5.008 8.393,5.008 9.607,5.074 10.020 C 5.446 12.323,6.831 14.228,8.886 15.263 C 9.441 15.542,10.251 15.808,10.830 15.900 L 11.000 15.927 11.000 16.964 L 11.000 18.000 9.946 18.000 C 8.797 18.000,8.644 18.022,8.382 18.221 C 8.302 18.282,8.187 18.415,8.128 18.516 C 8.037 18.672,8.020 18.746,8.020 19.000 C 8.020 19.256,8.036 19.328,8.131 19.489 C 8.192 19.592,8.304 19.725,8.381 19.783 C 8.642 19.983,8.738 19.996,9.908 19.998 L 10.995 20.000 11.008 21.153 L 11.020 22.307 11.141 22.503 C 11.543 23.156,12.457 23.156,12.859 22.503 L 12.980 22.307 12.992 21.153 L 13.005 20.000 14.092 19.998 C 15.262 19.996,15.358 19.983,15.619 19.783 C 15.696 19.725,15.808 19.592,15.869 19.489 C 15.964 19.328,15.980 19.256,15.980 19.000 C 15.980 18.746,15.963 18.672,15.872 18.516 C 15.813 18.415,15.698 18.282,15.618 18.221 C 15.356 18.022,15.203 18.000,14.054 18.000 L 13.000 18.000 13.000 16.964 L 13.000 15.927 13.170 15.900 C 13.492 15.849,13.981 15.717,14.380 15.573 C 16.325 14.873,17.873 13.325,18.573 11.380 C 18.876 10.538,18.977 9.944,18.977 9.000 C 18.977 8.056,18.876 7.462,18.573 6.620 C 17.715 4.237,15.581 2.473,13.102 2.098 C 12.726 2.041,11.813 1.997,11.540 2.023 M12.552 4.043 C 14.413 4.246,16.001 5.479,16.680 7.248 C 17.092 8.320,17.085 9.720,16.663 10.793 C 16.120 12.174,14.991 13.256,13.600 13.732 C 13.044 13.922,12.670 13.980,12.000 13.980 C 11.330 13.980,10.956 13.922,10.400 13.732 C 8.808 13.188,7.580 11.864,7.161 10.240 C 6.920 9.307,6.983 8.125,7.320 7.248 C 8.146 5.096,10.274 3.793,12.552 4.043 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const VenusIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Venus = VenusIcon;