@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.25 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-triangle-alert" 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.320 2.065 C 11.177 2.096,10.931 2.183,10.772 2.257 C 10.129 2.562,9.724 2.937,9.344 3.577 C 8.866 4.383,1.439 17.404,1.302 17.676 C 0.891 18.492,0.888 19.502,1.293 20.305 C 1.606 20.927,2.067 21.391,2.660 21.682 C 3.321 22.007,2.465 21.980,11.980 21.980 C 21.536 21.980,20.633 22.011,21.340 21.663 C 21.944 21.365,22.365 20.944,22.663 20.340 C 22.913 19.831,22.979 19.552,22.979 19.000 C 22.979 18.465,22.915 18.180,22.685 17.700 C 22.524 17.362,14.787 3.798,14.511 3.369 C 14.101 2.733,13.456 2.273,12.700 2.080 C 12.328 1.985,11.717 1.978,11.320 2.065 M12.425 4.100 C 12.536 4.155,12.664 4.241,12.710 4.290 C 12.842 4.431,20.907 18.568,20.956 18.743 C 21.052 19.090,20.960 19.434,20.700 19.694 C 20.366 20.028,21.155 20.000,11.983 19.998 C 5.268 19.997,3.793 19.987,3.670 19.943 C 3.463 19.869,3.257 19.704,3.128 19.510 C 3.032 19.364,3.020 19.309,3.020 19.003 L 3.020 18.660 7.092 11.540 C 9.332 7.624,11.221 4.362,11.290 4.291 C 11.584 3.985,12.041 3.909,12.425 4.100 M11.695 8.057 C 11.466 8.129,11.256 8.299,11.128 8.516 L 11.020 8.700 11.020 11.003 L 11.020 13.306 11.141 13.503 C 11.209 13.613,11.346 13.756,11.452 13.828 C 11.923 14.144,12.554 13.999,12.859 13.503 L 12.980 13.306 12.980 11.003 L 12.980 8.700 12.872 8.516 C 12.628 8.101,12.150 7.915,11.695 8.057 M11.695 16.055 C 11.464 16.130,11.255 16.300,11.128 16.516 C 11.037 16.672,11.020 16.746,11.020 17.000 C 11.020 17.257,11.036 17.327,11.133 17.492 C 11.651 18.374,12.998 18.018,12.998 17.000 C 12.998 16.623,12.792 16.281,12.463 16.112 C 12.265 16.010,11.911 15.984,11.695 16.055 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const TriangleAlertIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const TriangleAlert = TriangleAlertIcon;