@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.64 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-concierge-bell" 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="M9.695 3.057 C 9.466 3.129,9.256 3.299,9.128 3.516 C 9.037 3.672,9.020 3.746,9.020 4.000 C 9.020 4.256,9.036 4.328,9.131 4.489 C 9.256 4.702,9.449 4.864,9.670 4.943 C 9.768 4.978,10.023 4.997,10.410 4.998 L 11.000 5.000 11.000 6.034 L 11.000 7.069 10.761 7.094 C 9.665 7.208,8.137 7.773,7.120 8.440 C 5.724 9.356,4.673 10.539,3.939 12.020 C 3.500 12.905,3.173 13.984,3.060 14.920 L 3.034 15.140 2.687 15.310 C 1.944 15.673,1.377 16.334,1.118 17.140 C 1.039 17.386,1.026 17.528,1.010 18.303 C 0.990 19.282,1.014 19.479,1.202 19.877 C 1.348 20.186,1.771 20.623,2.070 20.775 C 2.543 21.015,1.888 21.000,12.000 21.000 C 22.112 21.000,21.457 21.015,21.930 20.775 C 22.196 20.640,22.638 20.200,22.771 19.937 C 22.980 19.526,23.010 19.305,22.990 18.320 C 22.975 17.526,22.962 17.387,22.882 17.140 C 22.623 16.334,22.056 15.673,21.313 15.310 L 20.966 15.140 20.940 14.920 C 20.882 14.440,20.710 13.690,20.538 13.169 C 19.787 10.886,18.115 8.977,15.940 7.918 C 15.080 7.500,14.015 7.175,13.239 7.094 L 13.000 7.069 13.000 6.034 L 13.000 5.000 13.590 4.998 C 13.977 4.997,14.232 4.978,14.330 4.943 C 14.551 4.864,14.744 4.702,14.869 4.489 C 14.964 4.328,14.980 4.256,14.980 4.000 C 14.980 3.746,14.963 3.672,14.872 3.516 C 14.740 3.293,14.533 3.128,14.290 3.055 C 14.033 2.978,9.943 2.979,9.695 3.057 M13.102 9.098 C 15.581 9.473,17.715 11.237,18.573 13.620 C 18.719 14.025,18.851 14.520,18.896 14.830 L 18.921 15.000 12.000 15.000 L 5.079 15.000 5.104 14.830 C 5.150 14.512,5.319 13.891,5.456 13.531 C 6.187 11.615,7.709 10.115,9.620 9.427 C 10.250 9.200,10.715 9.102,11.540 9.023 C 11.813 8.997,12.726 9.041,13.102 9.098 M20.310 17.061 C 20.452 17.103,20.571 17.178,20.697 17.303 C 20.948 17.554,21.000 17.751,21.000 18.447 L 21.000 19.000 12.000 19.000 L 3.000 19.000 3.000 18.447 C 3.000 17.750,3.052 17.554,3.304 17.303 C 3.421 17.185,3.552 17.100,3.673 17.063 C 3.833 17.014,5.030 17.005,11.983 17.003 C 19.144 17.000,20.130 17.007,20.310 17.061 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const ConciergeBellIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const ConciergeBell = ConciergeBellIcon;