UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 1.48 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-no-axes-column" 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="M11.695 3.057 C 11.466 3.129,11.256 3.299,11.128 3.516 L 11.020 3.700 11.020 12.003 L 11.020 20.306 11.141 20.503 C 11.543 21.156,12.457 21.156,12.859 20.503 L 12.980 20.306 12.980 12.003 L 12.980 3.700 12.872 3.516 C 12.628 3.101,12.150 2.915,11.695 3.057 M17.695 9.057 C 17.466 9.129,17.256 9.299,17.128 9.516 L 17.020 9.700 17.020 15.003 L 17.020 20.306 17.141 20.503 C 17.543 21.156,18.457 21.156,18.859 20.503 L 18.980 20.306 18.980 15.003 L 18.980 9.700 18.872 9.516 C 18.628 9.101,18.150 8.915,17.695 9.057 M5.695 13.057 C 5.466 13.129,5.256 13.299,5.128 13.516 L 5.020 13.700 5.020 17.003 L 5.020 20.306 5.141 20.503 C 5.543 21.156,6.457 21.156,6.859 20.503 L 6.980 20.306 6.980 17.003 L 6.980 13.700 6.872 13.516 C 6.628 13.101,6.150 12.915,5.695 13.057 " stroke="none" fill="black" fill-rule="evenodd"></path></svg>`; export const ChartNoAxesColumnIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const ChartNoAxesColumn = ChartNoAxesColumnIcon;