UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.18 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-chart-pie" 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="M12.572 1.078 C 12.071 1.156,11.459 1.607,11.225 2.069 C 10.992 2.530,11.000 2.360,11.000 7.000 C 11.000 11.640,10.992 11.471,11.225 11.930 C 11.361 12.199,11.801 12.639,12.070 12.775 C 12.529 13.008,12.360 13.000,17.000 13.000 C 21.655 13.000,21.488 13.008,21.937 12.770 C 22.215 12.622,22.636 12.189,22.770 11.913 C 22.954 11.532,22.987 11.212,22.907 10.592 C 22.636 8.510,21.767 6.529,20.420 4.925 C 20.069 4.508,19.298 3.755,18.860 3.403 C 17.701 2.471,16.198 1.724,14.720 1.345 C 13.914 1.138,12.952 1.019,12.572 1.078 M7.477 1.973 C 5.571 2.805,3.777 4.388,2.626 6.252 C 1.063 8.782,0.602 11.905,1.365 14.798 C 1.754 16.275,2.445 17.646,3.413 18.860 C 3.838 19.393,4.718 20.261,5.255 20.677 C 7.968 22.775,11.415 23.489,14.738 22.642 C 17.316 21.984,19.579 20.391,21.101 18.163 C 21.724 17.251,22.198 16.269,22.199 15.889 C 22.201 15.352,21.771 14.909,21.243 14.906 C 20.730 14.902,20.482 15.098,20.169 15.756 C 19.638 16.869,19.071 17.657,18.192 18.503 C 17.186 19.472,16.069 20.133,14.694 20.575 C 11.902 21.472,8.809 20.908,6.456 19.073 C 6.017 18.732,5.327 18.054,4.996 17.640 C 2.984 15.127,2.457 11.709,3.621 8.730 C 4.440 6.635,5.967 4.973,8.041 3.921 C 8.655 3.610,8.841 3.454,8.937 3.169 C 9.021 2.924,9.016 2.726,8.920 2.469 C 8.706 1.896,8.117 1.694,7.477 1.973 M13.860 3.207 C 16.680 3.777,19.138 5.801,20.277 8.491 C 20.573 9.191,20.821 10.094,20.902 10.770 L 20.929 11.000 16.965 11.000 L 13.000 11.000 13.000 7.035 L 13.000 3.071 13.230 3.098 C 13.357 3.113,13.640 3.162,13.860 3.207 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const ChartPieIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const ChartPie = ChartPieIcon;