@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.81 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-tornado" 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.695 3.057 C 2.466 3.129,2.256 3.299,2.128 3.516 C 2.037 3.672,2.020 3.746,2.020 4.000 C 2.020 4.256,2.036 4.328,2.131 4.489 C 2.256 4.702,2.449 4.864,2.670 4.943 C 2.893 5.023,21.107 5.023,21.330 4.943 C 21.551 4.864,21.744 4.702,21.869 4.489 C 21.964 4.328,21.980 4.256,21.980 4.000 C 21.980 3.746,21.963 3.672,21.872 3.516 C 21.740 3.293,21.533 3.128,21.290 3.055 C 21.027 2.976,2.947 2.978,2.695 3.057 M5.695 7.057 C 5.466 7.129,5.256 7.299,5.128 7.516 C 5.037 7.672,5.020 7.746,5.020 8.000 C 5.020 8.256,5.036 8.328,5.131 8.489 C 5.256 8.702,5.449 8.864,5.670 8.943 C 5.892 9.022,18.108 9.022,18.330 8.943 C 18.551 8.864,18.744 8.702,18.869 8.489 C 18.964 8.328,18.980 8.256,18.980 8.000 C 18.980 7.746,18.963 7.672,18.872 7.516 C 18.740 7.293,18.533 7.128,18.290 7.055 C 18.028 6.976,5.947 6.978,5.695 7.057 M8.695 11.057 C 8.466 11.129,8.256 11.299,8.128 11.516 C 8.037 11.672,8.020 11.746,8.020 12.000 C 8.020 12.256,8.036 12.328,8.131 12.489 C 8.256 12.702,8.449 12.864,8.670 12.943 C 8.892 13.022,19.108 13.022,19.330 12.943 C 19.551 12.864,19.744 12.702,19.869 12.489 C 19.964 12.328,19.980 12.256,19.980 12.000 C 19.980 11.746,19.963 11.672,19.872 11.516 C 19.740 11.293,19.533 11.128,19.290 11.055 C 19.028 10.976,8.946 10.978,8.695 11.057 M9.695 15.057 C 9.466 15.129,9.256 15.299,9.128 15.516 C 9.037 15.672,9.020 15.746,9.020 16.000 C 9.020 16.256,9.036 16.328,9.131 16.489 C 9.256 16.702,9.449 16.864,9.670 16.943 C 9.891 17.022,16.109 17.022,16.330 16.943 C 16.551 16.864,16.744 16.702,16.869 16.489 C 16.964 16.328,16.980 16.256,16.980 16.000 C 16.980 15.746,16.963 15.672,16.872 15.516 C 16.740 15.293,16.533 15.128,16.290 15.055 C 16.030 14.977,9.945 14.979,9.695 15.057 M8.695 19.057 C 8.466 19.129,8.256 19.299,8.128 19.516 C 8.037 19.672,8.020 19.746,8.020 20.000 C 8.020 20.256,8.036 20.328,8.131 20.489 C 8.256 20.702,8.449 20.864,8.670 20.943 C 8.885 21.020,11.115 21.020,11.330 20.943 C 11.551 20.864,11.744 20.702,11.869 20.489 C 11.964 20.328,11.980 20.256,11.980 20.000 C 11.980 19.746,11.963 19.672,11.872 19.516 C 11.740 19.293,11.533 19.128,11.290 19.055 C 11.039 18.979,8.937 18.981,8.695 19.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const TornadoIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Tornado = TornadoIcon;