UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.17 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-flask-conical" 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="M8.240 1.037 C 7.793 1.175,7.512 1.546,7.512 2.000 C 7.512 2.405,7.719 2.724,8.100 2.905 C 8.263 2.982,8.365 2.999,8.650 3.000 L 9.000 3.000 8.999 5.530 C 8.998 7.046,8.982 8.128,8.959 8.231 C 8.937 8.325,8.292 9.549,7.525 10.951 C 3.946 17.493,3.326 18.638,3.224 18.894 C 2.856 19.815,2.951 20.800,3.489 21.626 C 3.931 22.304,4.618 22.769,5.434 22.942 C 5.830 23.026,18.170 23.026,18.566 22.942 C 20.429 22.547,21.473 20.636,20.776 18.895 C 20.672 18.634,20.206 17.773,16.595 11.171 C 15.762 9.648,15.063 8.325,15.041 8.231 C 15.018 8.129,15.002 7.044,15.001 5.530 L 15.000 3.000 15.350 3.000 C 15.635 2.999,15.737 2.982,15.900 2.905 C 16.281 2.724,16.488 2.405,16.488 2.000 C 16.488 1.615,16.293 1.297,15.940 1.106 L 15.780 1.020 12.060 1.013 C 10.014 1.009,8.295 1.020,8.240 1.037 M13.008 5.770 L 13.020 8.540 13.150 8.913 C 13.241 9.174,13.668 9.995,14.560 11.626 C 15.264 12.913,15.840 13.973,15.840 13.983 C 15.840 13.992,14.112 14.000,12.000 14.000 C 9.888 14.000,8.160 13.992,8.160 13.983 C 8.160 13.973,8.724 12.934,9.413 11.673 C 10.103 10.412,10.716 9.257,10.776 9.106 C 10.996 8.555,10.999 8.520,10.999 5.650 L 11.000 3.000 11.998 3.000 L 12.997 3.000 13.008 5.770 M17.929 17.790 C 18.467 18.774,18.928 19.641,18.953 19.716 C 19.094 20.126,18.888 20.635,18.484 20.872 L 18.300 20.980 12.000 20.980 L 5.700 20.980 5.516 20.872 C 5.112 20.635,4.906 20.126,5.047 19.716 C 5.072 19.641,5.533 18.774,6.071 17.790 L 7.048 16.000 12.000 16.000 L 16.952 16.000 17.929 17.790 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const FlaskConicalIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const FlaskConical = FlaskConicalIcon;