@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.01 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-popsicle" 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="M6.080 1.097 C 3.619 1.481,1.684 3.252,1.099 5.654 C 0.694 7.318,1.051 9.133,2.066 10.572 C 2.238 10.815,3.406 12.012,6.559 15.174 C 9.005 17.626,10.919 19.515,11.052 19.607 C 11.385 19.835,11.808 20.026,12.198 20.124 C 12.649 20.238,13.438 20.217,13.839 20.080 C 14.491 19.858,14.698 19.707,15.681 18.734 L 16.502 17.922 18.921 20.343 C 20.267 21.690,21.420 22.813,21.520 22.873 C 21.673 22.964,21.746 22.980,22.000 22.980 C 22.257 22.980,22.327 22.964,22.492 22.867 C 22.968 22.587,23.139 21.967,22.865 21.508 C 22.810 21.416,21.675 20.251,20.343 18.921 L 17.922 16.502 18.734 15.681 C 19.594 14.812,19.729 14.645,19.940 14.187 C 20.380 13.235,20.242 12.075,19.589 11.220 C 19.343 10.898,10.967 2.543,10.652 2.306 C 9.864 1.711,8.960 1.305,8.047 1.135 C 7.586 1.049,6.521 1.029,6.080 1.097 M7.927 3.154 C 8.096 3.199,8.367 3.291,8.530 3.359 C 9.218 3.645,9.158 3.590,13.733 8.156 C 16.284 10.702,18.040 12.484,18.091 12.580 C 18.210 12.802,18.210 13.198,18.091 13.420 C 18.042 13.513,17.061 14.522,15.753 15.825 C 13.239 18.331,13.364 18.228,12.850 18.191 C 12.668 18.178,12.515 18.138,12.380 18.069 C 12.227 17.990,11.196 16.979,7.977 13.753 C 5.369 11.139,3.720 9.457,3.632 9.320 C 3.101 8.496,2.873 7.592,2.961 6.670 C 3.027 5.974,3.228 5.407,3.615 4.826 C 4.233 3.897,5.254 3.247,6.380 3.066 C 6.670 3.019,7.624 3.074,7.927 3.154 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const PopsicleIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Popsicle = PopsicleIcon;