UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.26 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-plug-2" 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="M8.695 1.057 C 8.466 1.129,8.256 1.299,8.128 1.516 L 8.020 1.700 8.009 4.350 L 7.998 7.000 6.445 7.000 C 4.758 7.000,4.658 7.011,4.382 7.221 C 4.302 7.282,4.187 7.415,4.128 7.516 C 4.036 7.672,4.020 7.746,4.020 8.003 C 4.020 8.271,4.034 8.329,4.141 8.503 C 4.287 8.740,4.577 8.946,4.817 8.982 L 4.992 9.008 5.012 10.414 C 5.034 11.865,5.054 12.081,5.236 12.786 C 5.857 15.200,7.850 17.173,10.275 17.777 C 10.487 17.830,10.736 17.885,10.829 17.900 L 10.997 17.927 11.009 20.116 L 11.020 22.306 11.141 22.503 C 11.446 22.999,12.077 23.144,12.548 22.828 C 12.654 22.756,12.791 22.613,12.859 22.503 L 12.980 22.306 12.991 20.116 L 13.003 17.927 13.171 17.900 C 13.492 17.849,13.982 17.717,14.380 17.573 C 16.325 16.873,17.874 15.324,18.573 13.380 C 18.916 12.428,18.963 12.090,18.988 10.414 L 19.008 9.008 19.183 8.982 C 19.423 8.946,19.713 8.740,19.859 8.503 C 19.966 8.329,19.980 8.271,19.980 8.003 C 19.980 7.746,19.964 7.672,19.872 7.516 C 19.813 7.415,19.698 7.282,19.618 7.221 C 19.342 7.011,19.242 7.000,17.555 7.000 L 16.002 7.000 15.991 4.350 L 15.980 1.700 15.871 1.514 C 15.479 0.848,14.521 0.848,14.129 1.514 L 14.020 1.700 14.009 4.350 L 13.998 7.000 12.000 7.000 L 10.002 7.000 9.991 4.350 L 9.980 1.700 9.872 1.516 C 9.628 1.101,9.150 0.915,8.695 1.057 M17.000 10.082 C 17.000 11.235,16.961 11.759,16.839 12.240 C 16.488 13.622,15.495 14.845,14.212 15.476 C 13.467 15.842,12.862 15.980,12.000 15.980 C 11.330 15.980,10.956 15.922,10.400 15.732 C 8.808 15.188,7.575 13.858,7.162 12.240 C 7.039 11.760,7.000 11.237,7.000 10.082 L 7.000 9.000 12.000 9.000 L 17.000 9.000 17.000 10.082 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const Plug2Icon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Plug2 = Plug2Icon;