@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.64 kB
JavaScript
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-pc-case" 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="M6.499 1.043 C 5.379 1.233,4.461 2.048,4.114 3.160 L 4.020 3.460 4.020 12.000 L 4.020 20.540 4.114 20.840 C 4.422 21.827,5.173 22.578,6.160 22.886 L 6.460 22.980 12.000 22.980 L 17.540 22.980 17.840 22.886 C 18.827 22.578,19.578 21.827,19.886 20.840 L 19.980 20.540 19.980 12.000 L 19.980 3.460 19.886 3.160 C 19.581 2.182,18.832 1.428,17.861 1.121 L 17.540 1.020 12.120 1.014 C 9.139 1.011,6.609 1.024,6.499 1.043 M17.310 3.061 C 17.589 3.144,17.856 3.411,17.939 3.690 C 17.993 3.870,18.000 4.860,18.000 12.001 C 18.000 18.754,17.991 20.138,17.945 20.290 C 17.872 20.533,17.707 20.740,17.484 20.872 L 17.300 20.980 12.000 20.980 L 6.700 20.980 6.516 20.872 C 6.415 20.813,6.284 20.700,6.225 20.623 C 5.985 20.308,6.000 20.888,6.000 12.022 C 6.000 2.888,5.974 3.632,6.304 3.303 C 6.621 2.985,6.234 3.006,11.983 3.003 C 16.458 3.000,17.131 3.008,17.310 3.061 M8.695 5.057 C 8.466 5.129,8.256 5.299,8.128 5.516 C 8.037 5.672,8.020 5.746,8.020 6.000 C 8.020 6.256,8.036 6.328,8.131 6.489 C 8.256 6.702,8.449 6.864,8.670 6.943 C 8.891 7.022,15.109 7.022,15.330 6.943 C 15.551 6.864,15.744 6.702,15.869 6.489 C 15.964 6.328,15.980 6.256,15.980 6.000 C 15.980 5.746,15.963 5.672,15.872 5.516 C 15.740 5.293,15.533 5.128,15.290 5.055 C 15.030 4.977,8.945 4.979,8.695 5.057 M8.695 9.057 C 8.466 9.129,8.256 9.299,8.128 9.516 C 8.037 9.672,8.020 9.746,8.020 10.000 C 8.020 10.256,8.036 10.328,8.131 10.489 C 8.256 10.702,8.449 10.864,8.670 10.943 C 8.891 11.022,15.109 11.022,15.330 10.943 C 15.551 10.864,15.744 10.702,15.869 10.489 C 15.964 10.328,15.980 10.256,15.980 10.000 C 15.980 9.746,15.963 9.672,15.872 9.516 C 15.740 9.293,15.533 9.128,15.290 9.055 C 15.030 8.977,8.945 8.979,8.695 9.057 M14.695 13.055 C 14.464 13.130,14.255 13.300,14.128 13.516 C 14.037 13.672,14.020 13.746,14.020 14.000 C 14.020 14.257,14.036 14.327,14.133 14.492 C 14.651 15.374,15.998 15.018,15.998 14.000 C 15.998 13.623,15.792 13.281,15.463 13.112 C 15.265 13.010,14.911 12.984,14.695 13.055 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const PcCaseIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const PcCase = PcCaseIcon;