UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.04 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-hdmi-port" 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.477 7.073 C 1.806 7.249,1.238 7.823,1.060 8.508 C 0.971 8.847,0.971 13.153,1.060 13.492 C 1.153 13.852,1.310 14.118,1.596 14.404 C 2.035 14.843,2.446 15.000,3.156 15.000 L 3.575 15.000 4.518 15.934 C 5.332 16.740,5.487 16.876,5.657 16.934 C 5.837 16.994,6.381 17.000,12.000 17.000 C 17.619 17.000,18.163 16.994,18.343 16.934 C 18.513 16.876,18.668 16.740,19.482 15.934 L 20.425 15.000 20.844 15.000 C 21.554 15.000,21.965 14.843,22.404 14.404 C 22.550 14.259,22.715 14.048,22.771 13.937 C 22.996 13.494,23.000 13.442,22.999 11.014 C 22.999 8.601,22.991 8.496,22.781 8.083 C 22.646 7.816,22.297 7.449,22.017 7.281 C 21.521 6.982,22.335 7.005,12.000 7.005 C 3.376 7.005,2.722 7.009,2.477 7.073 M21.000 10.996 L 21.000 12.993 20.370 13.007 C 19.850 13.018,19.712 13.034,19.580 13.097 C 19.484 13.143,19.051 13.540,18.498 14.087 L 17.576 15.000 12.000 15.000 L 6.424 15.000 5.502 14.087 C 4.949 13.540,4.516 13.143,4.420 13.097 C 4.288 13.034,4.150 13.018,3.630 13.007 L 3.000 12.993 3.000 10.996 L 3.000 9.000 12.000 9.000 L 21.000 9.000 21.000 10.996 M7.240 11.037 C 6.793 11.174,6.512 11.546,6.512 12.000 C 6.512 12.405,6.719 12.724,7.100 12.905 L 7.300 12.999 12.000 12.999 L 16.700 12.999 16.900 12.905 C 17.281 12.724,17.488 12.405,17.488 12.000 C 17.488 11.615,17.293 11.297,16.940 11.106 L 16.780 11.020 12.060 11.013 C 9.464 11.009,7.295 11.020,7.240 11.037 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const HdmiPortIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const HdmiPort = HdmiPortIcon;