UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.62 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-bar" 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="M2.695 2.057 C 2.466 2.129,2.256 2.299,2.128 2.516 L 2.020 2.700 2.020 11.120 L 2.020 19.540 2.114 19.840 C 2.418 20.816,3.149 21.554,4.140 21.886 L 4.420 21.980 12.773 21.991 C 18.322 21.998,21.177 21.988,21.277 21.961 C 21.498 21.901,21.739 21.710,21.867 21.492 C 21.964 21.327,21.980 21.257,21.980 21.000 C 21.980 20.746,21.963 20.672,21.872 20.516 C 21.761 20.328,21.572 20.158,21.373 20.070 C 21.284 20.031,19.486 20.016,12.980 20.000 L 4.700 19.980 4.516 19.872 C 4.328 19.761,4.158 19.572,4.070 19.373 C 4.031 19.284,4.016 17.486,4.000 10.980 L 3.980 2.700 3.872 2.516 C 3.628 2.101,3.150 1.915,2.695 2.057 M6.695 5.057 C 6.466 5.129,6.256 5.299,6.128 5.516 C 6.037 5.672,6.020 5.746,6.020 6.000 C 6.020 6.256,6.036 6.328,6.131 6.489 C 6.256 6.702,6.449 6.864,6.670 6.943 C 6.888 7.021,10.112 7.021,10.330 6.943 C 10.551 6.864,10.744 6.702,10.869 6.489 C 10.964 6.328,10.980 6.256,10.980 6.000 C 10.980 5.746,10.963 5.672,10.872 5.516 C 10.740 5.293,10.533 5.128,10.290 5.055 C 10.035 4.978,6.941 4.980,6.695 5.057 M6.695 10.057 C 6.466 10.129,6.256 10.299,6.128 10.516 C 6.037 10.672,6.020 10.746,6.020 11.000 C 6.020 11.256,6.036 11.328,6.131 11.489 C 6.256 11.702,6.449 11.864,6.670 11.943 C 6.793 11.987,7.938 11.996,13.000 11.996 C 18.062 11.996,19.207 11.987,19.330 11.943 C 19.551 11.864,19.744 11.702,19.869 11.489 C 19.964 11.328,19.980 11.256,19.980 11.000 C 19.980 10.746,19.963 10.672,19.872 10.516 C 19.740 10.293,19.533 10.128,19.290 10.055 C 19.028 9.976,6.947 9.978,6.695 10.057 M6.695 15.057 C 6.466 15.129,6.256 15.299,6.128 15.516 C 6.037 15.672,6.020 15.746,6.020 16.000 C 6.020 16.256,6.036 16.328,6.131 16.489 C 6.256 16.702,6.449 16.864,6.670 16.943 C 6.892 17.022,15.108 17.022,15.330 16.943 C 15.551 16.864,15.744 16.702,15.869 16.489 C 15.964 16.328,15.980 16.256,15.980 16.000 C 15.980 15.746,15.963 15.672,15.872 15.516 C 15.740 15.293,15.533 15.128,15.290 15.055 C 15.029 14.976,6.946 14.979,6.695 15.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const ChartBarIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const ChartBar = ChartBarIcon;