UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.26 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-ice-cream-cone" 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.380 1.043 C 8.817 1.296,6.650 3.248,6.134 5.770 L 6.062 6.119 5.701 6.299 C 4.929 6.685,4.369 7.341,4.114 8.160 C 3.979 8.594,3.979 9.406,4.114 9.840 C 4.298 10.430,4.610 10.895,5.109 11.321 C 5.380 11.552,5.634 11.697,6.017 11.838 L 6.295 11.941 8.258 16.920 C 9.492 20.051,10.269 21.969,10.350 22.086 C 10.709 22.606,11.377 22.960,12.000 22.960 C 12.623 22.960,13.291 22.606,13.650 22.086 C 13.730 21.969,14.509 20.047,15.742 16.921 L 17.705 11.941 17.982 11.839 C 18.366 11.697,18.620 11.552,18.891 11.321 C 19.390 10.895,19.702 10.430,19.886 9.840 C 19.964 9.588,19.979 9.453,19.979 9.000 C 19.979 8.547,19.964 8.412,19.886 8.160 C 19.631 7.341,19.071 6.685,18.299 6.299 L 17.938 6.119 17.866 5.770 C 17.449 3.733,15.921 2.004,13.940 1.329 C 13.131 1.053,12.261 0.956,11.380 1.043 M12.605 3.058 C 14.074 3.280,15.310 4.324,15.797 5.755 C 15.896 6.047,15.999 6.676,16.001 7.000 C 16.002 7.249,16.107 7.518,16.272 7.695 C 16.418 7.851,16.744 7.999,16.943 8.000 C 17.403 8.001,17.820 8.289,17.939 8.690 C 18.014 8.942,18.015 9.056,17.945 9.290 C 17.872 9.533,17.707 9.740,17.484 9.872 L 17.300 9.980 12.000 9.980 L 6.700 9.980 6.516 9.872 C 5.935 9.530,5.833 8.774,6.303 8.303 C 6.499 8.107,6.763 8.001,7.057 7.999 C 7.555 7.996,7.998 7.526,8.000 7.000 C 8.001 6.678,8.104 6.048,8.203 5.755 C 8.444 5.048,8.937 4.337,9.490 3.899 C 10.402 3.178,11.475 2.888,12.605 3.058 M15.513 12.038 C 15.405 12.349,12.014 20.918,12.000 20.918 C 11.986 20.918,8.585 12.324,8.487 12.039 C 8.478 12.014,9.749 12.000,12.000 12.000 C 14.219 12.000,15.522 12.014,15.513 12.038 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const IceCreamConeIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const IceCreamCone = IceCreamConeIcon;