@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.34 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-flask-round" 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.290 L 8.998 7.580 8.489 7.827 C 6.904 8.595,5.624 9.868,4.842 11.454 C 4.468 12.213,4.264 12.840,4.095 13.760 C 3.988 14.340,3.997 15.700,4.113 16.330 C 4.415 17.981,5.108 19.354,6.234 20.529 C 7.471 21.822,9.037 22.626,10.900 22.926 C 11.317 22.993,12.683 22.993,13.100 22.926 C 14.951 22.628,16.538 21.816,17.747 20.548 C 18.905 19.334,19.581 17.998,19.887 16.320 C 20.005 15.670,20.014 14.362,19.904 13.760 C 19.738 12.849,19.533 12.214,19.158 11.454 C 18.376 9.868,17.094 8.594,15.510 7.827 L 15.001 7.580 15.000 5.290 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.009 5.790 L 13.020 8.580 13.109 8.747 C 13.251 9.012,13.457 9.154,13.978 9.345 C 14.507 9.539,15.040 9.812,15.460 10.102 C 15.820 10.351,16.648 11.178,16.899 11.540 C 17.331 12.164,17.718 13.045,17.854 13.720 L 17.907 13.980 14.954 13.990 C 13.329 13.996,10.671 13.996,9.046 13.990 L 6.093 13.980 6.146 13.720 C 6.282 13.047,6.666 12.169,7.100 11.540 C 7.347 11.183,8.176 10.355,8.540 10.103 C 8.959 9.812,9.492 9.540,10.022 9.345 C 10.543 9.154,10.749 9.012,10.891 8.747 L 10.980 8.580 10.991 5.790 L 11.002 3.000 12.000 3.000 L 12.998 3.000 13.009 5.790 M17.840 16.330 C 17.450 18.111,16.233 19.622,14.542 20.422 C 11.977 21.637,8.911 20.868,7.195 18.580 C 6.699 17.920,6.334 17.125,6.160 16.330 L 6.088 16.000 12.000 16.000 L 17.912 16.000 17.840 16.330 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const FlaskRoundIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const FlaskRound = FlaskRoundIcon;