@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.53 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-rss" 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="M3.695 3.057 C 3.466 3.129,3.256 3.299,3.128 3.516 C 3.036 3.672,3.020 3.746,3.020 4.003 C 3.020 4.271,3.034 4.329,3.141 4.503 C 3.289 4.743,3.580 4.948,3.811 4.975 C 3.904 4.986,4.340 5.014,4.780 5.038 C 6.258 5.118,7.335 5.315,8.646 5.743 C 13.207 7.234,16.766 10.793,18.257 15.354 C 18.685 16.665,18.882 17.742,18.962 19.220 C 18.986 19.660,19.014 20.096,19.025 20.189 C 19.052 20.420,19.257 20.711,19.497 20.859 C 19.671 20.966,19.729 20.980,19.997 20.980 C 20.256 20.980,20.327 20.964,20.489 20.869 C 20.871 20.645,20.996 20.372,20.998 19.758 C 21.003 18.500,20.745 16.718,20.366 15.400 C 19.527 12.480,18.070 10.020,15.935 7.913 C 14.545 6.543,13.253 5.624,11.500 4.758 C 9.398 3.721,7.418 3.196,5.021 3.041 C 4.208 2.989,3.901 2.992,3.695 3.057 M3.695 10.057 C 3.466 10.129,3.256 10.299,3.128 10.516 C 3.036 10.672,3.020 10.746,3.020 11.003 C 3.020 11.271,3.034 11.329,3.141 11.503 C 3.289 11.743,3.580 11.948,3.811 11.975 C 3.904 11.986,4.241 12.013,4.560 12.035 C 5.644 12.111,6.559 12.354,7.500 12.816 C 9.133 13.618,10.382 14.867,11.184 16.500 C 11.646 17.441,11.889 18.356,11.965 19.440 C 11.987 19.759,12.014 20.096,12.025 20.189 C 12.052 20.420,12.257 20.711,12.497 20.859 C 12.671 20.966,12.729 20.980,12.997 20.980 C 13.257 20.980,13.327 20.964,13.492 20.867 C 13.714 20.737,13.901 20.498,13.965 20.264 C 14.061 19.915,13.944 18.607,13.740 17.740 C 13.304 15.885,12.413 14.289,11.062 12.939 C 9.858 11.736,8.486 10.913,6.866 10.423 C 5.788 10.096,4.167 9.909,3.695 10.057 M4.477 17.073 C 3.806 17.249,3.238 17.823,3.060 18.508 C 2.941 18.962,3.003 19.492,3.225 19.930 C 3.361 20.199,3.801 20.639,4.070 20.775 C 4.659 21.073,5.341 21.073,5.930 20.775 C 6.196 20.640,6.638 20.200,6.771 19.937 C 6.994 19.498,7.052 19.007,6.940 18.529 C 6.858 18.182,6.720 17.927,6.465 17.653 C 6.074 17.232,5.560 17.005,5.000 17.005 C 4.857 17.005,4.622 17.036,4.477 17.073 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const RssIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Rss = RssIcon;