@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 3.1 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-dice-6" 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="M4.499 2.043 C 3.380 2.232,2.461 3.048,2.114 4.160 L 2.020 4.460 2.020 12.000 L 2.020 19.540 2.114 19.840 C 2.422 20.827,3.173 21.578,4.160 21.886 L 4.460 21.980 12.000 21.980 L 19.540 21.980 19.840 21.886 C 20.827 21.578,21.578 20.827,21.886 19.840 L 21.980 19.540 21.980 12.000 L 21.980 4.460 21.886 4.160 C 21.581 3.182,20.832 2.428,19.861 2.121 L 19.540 2.020 12.120 2.014 C 8.039 2.011,4.609 2.024,4.499 2.043 M19.310 4.061 C 19.589 4.144,19.856 4.411,19.939 4.690 C 19.993 4.870,20.000 5.755,20.000 12.001 C 20.000 17.907,19.991 19.138,19.945 19.290 C 19.872 19.533,19.707 19.740,19.484 19.872 L 19.300 19.980 12.000 19.980 L 4.700 19.980 4.516 19.872 C 4.415 19.813,4.284 19.700,4.225 19.623 C 3.986 19.309,4.000 19.795,4.000 12.022 C 4.000 5.758,4.007 4.870,4.061 4.690 C 4.140 4.421,4.412 4.143,4.673 4.063 C 4.964 3.974,19.009 3.971,19.310 4.061 M7.695 7.055 C 7.464 7.130,7.255 7.300,7.128 7.516 C 7.037 7.672,7.020 7.746,7.020 8.000 C 7.020 8.257,7.036 8.327,7.133 8.492 C 7.651 9.374,8.998 9.018,8.998 8.000 C 8.998 7.623,8.792 7.281,8.463 7.112 C 8.265 7.010,7.911 6.984,7.695 7.055 M15.695 7.055 C 15.464 7.130,15.255 7.300,15.128 7.516 C 15.037 7.672,15.020 7.746,15.020 8.000 C 15.020 8.257,15.036 8.327,15.133 8.492 C 15.651 9.374,16.998 9.018,16.998 8.000 C 16.998 7.623,16.792 7.281,16.463 7.112 C 16.265 7.010,15.911 6.984,15.695 7.055 M7.695 11.055 C 7.464 11.130,7.255 11.300,7.128 11.516 C 7.037 11.672,7.020 11.746,7.020 12.000 C 7.020 12.257,7.036 12.327,7.133 12.492 C 7.651 13.374,8.998 13.018,8.998 12.000 C 8.998 11.623,8.792 11.281,8.463 11.112 C 8.265 11.010,7.911 10.984,7.695 11.055 M15.695 11.055 C 15.464 11.130,15.255 11.300,15.128 11.516 C 15.037 11.672,15.020 11.746,15.020 12.000 C 15.020 12.257,15.036 12.327,15.133 12.492 C 15.651 13.374,16.998 13.018,16.998 12.000 C 16.998 11.623,16.792 11.281,16.463 11.112 C 16.265 11.010,15.911 10.984,15.695 11.055 M7.695 15.055 C 7.464 15.130,7.255 15.300,7.128 15.516 C 7.037 15.672,7.020 15.746,7.020 16.000 C 7.020 16.257,7.036 16.327,7.133 16.492 C 7.651 17.374,8.998 17.018,8.998 16.000 C 8.998 15.623,8.792 15.281,8.463 15.112 C 8.265 15.010,7.911 14.984,7.695 15.055 M15.695 15.055 C 15.464 15.130,15.255 15.300,15.128 15.516 C 15.037 15.672,15.020 15.746,15.020 16.000 C 15.020 16.257,15.036 16.327,15.133 16.492 C 15.651 17.374,16.998 17.018,16.998 16.000 C 16.998 15.623,16.792 15.281,16.463 15.112 C 16.265 15.010,15.911 14.984,15.695 15.055 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const Dice6Icon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Dice6 = Dice6Icon;