@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.48 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-antenna" 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.643 1.066 C 6.261 1.206,6.333 1.077,3.585 6.583 C 0.793 12.177,0.918 11.892,1.061 12.322 C 1.189 12.707,1.594 13.000,2.000 13.000 C 2.227 13.000,2.512 12.884,2.679 12.725 C 2.798 12.611,3.076 12.088,3.975 10.290 L 5.120 8.000 6.500 8.000 L 7.879 8.000 6.954 9.852 C 5.938 11.889,5.927 11.919,6.061 12.322 C 6.189 12.707,6.594 13.000,7.000 13.000 C 7.227 13.000,7.512 12.884,7.679 12.725 C 7.798 12.611,8.076 12.088,8.975 10.290 L 10.120 8.000 11.500 8.000 L 12.879 8.000 11.954 9.852 C 10.938 11.889,10.927 11.919,11.061 12.322 C 11.189 12.707,11.594 13.000,12.000 13.000 C 12.227 13.000,12.512 12.884,12.679 12.725 C 12.798 12.611,13.076 12.088,13.975 10.290 L 15.120 8.000 16.500 8.000 L 17.879 8.000 16.954 9.852 C 15.938 11.889,15.927 11.919,16.061 12.322 C 16.189 12.707,16.594 13.000,17.000 13.000 C 17.243 13.000,17.521 12.881,17.697 12.702 C 17.829 12.567,18.340 11.575,20.415 7.417 C 23.195 1.847,23.081 2.105,22.944 1.693 C 22.717 1.008,21.838 0.781,21.322 1.274 C 21.202 1.389,20.927 1.905,20.025 3.710 L 18.880 6.000 17.500 6.000 L 16.121 6.000 17.046 4.148 C 18.056 2.124,18.072 2.079,17.944 1.693 C 17.717 1.008,16.838 0.781,16.322 1.274 C 16.202 1.389,15.927 1.905,15.025 3.710 L 13.880 6.000 12.500 6.000 L 11.121 6.000 12.046 4.148 C 13.056 2.124,13.072 2.079,12.944 1.693 C 12.717 1.008,11.838 0.781,11.322 1.274 C 11.202 1.389,10.927 1.905,10.025 3.710 L 8.880 6.000 7.500 6.000 L 6.121 6.000 7.046 4.148 C 8.056 2.124,8.072 2.079,7.944 1.693 C 7.909 1.586,7.828 1.435,7.765 1.358 C 7.523 1.065,7.011 0.931,6.643 1.066 M11.695 15.057 C 11.466 15.129,11.256 15.299,11.128 15.516 L 11.020 15.700 11.020 19.003 L 11.020 22.306 11.141 22.503 C 11.543 23.156,12.457 23.156,12.859 22.503 L 12.980 22.306 12.980 19.003 L 12.980 15.700 12.872 15.516 C 12.628 15.101,12.150 14.915,11.695 15.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const AntennaIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Antenna = AntennaIcon;