@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 1.93 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-bold" 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.477 3.073 C 5.806 3.249,5.238 3.823,5.060 4.508 C 4.970 4.854,4.970 19.146,5.060 19.492 C 5.246 20.206,5.875 20.814,6.579 20.960 C 6.719 20.989,8.203 20.998,11.242 20.989 C 15.351 20.977,15.723 20.971,16.000 20.905 C 17.543 20.539,18.756 19.614,19.433 18.288 C 19.662 17.839,19.805 17.439,19.907 16.960 C 20.008 16.489,20.008 15.511,19.907 15.040 C 19.624 13.715,18.867 12.582,17.787 11.863 L 17.434 11.629 17.633 11.424 C 18.239 10.802,18.706 9.899,18.907 8.960 C 18.960 8.714,18.980 8.448,18.980 8.000 C 18.980 7.101,18.838 6.506,18.433 5.713 C 17.794 4.461,16.604 3.510,15.240 3.162 C 14.658 3.013,14.267 3.000,10.452 3.002 C 7.077 3.004,6.716 3.011,6.477 3.073 M14.861 5.122 C 15.824 5.425,16.585 6.187,16.875 7.139 C 16.958 7.412,16.973 7.542,16.973 8.000 C 16.973 8.458,16.958 8.588,16.875 8.861 C 16.585 9.811,15.844 10.556,14.860 10.886 L 14.580 10.980 10.790 10.991 L 7.000 11.003 7.000 8.000 L 7.000 4.997 10.770 5.009 L 14.540 5.021 14.861 5.122 M15.861 13.121 C 16.825 13.426,17.585 14.187,17.875 15.139 C 17.958 15.412,17.973 15.542,17.973 16.000 C 17.973 16.458,17.958 16.588,17.875 16.861 C 17.586 17.811,16.844 18.556,15.860 18.886 L 15.580 18.980 11.290 18.991 L 7.000 19.002 7.000 16.000 L 7.000 12.998 11.270 13.009 L 15.540 13.020 15.861 13.121 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const BoldIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Bold = BoldIcon;