UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.03 kB
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-swiss-franc" 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="M9.695 2.057 C 9.466 2.129,9.256 2.299,9.128 2.516 L 9.020 2.700 9.010 8.850 L 8.999 15.000 7.446 15.000 C 5.758 15.000,5.658 15.011,5.382 15.221 C 5.302 15.282,5.187 15.415,5.128 15.516 C 5.037 15.672,5.020 15.746,5.020 16.000 C 5.020 16.256,5.036 16.328,5.131 16.489 C 5.192 16.592,5.304 16.725,5.381 16.783 C 5.654 16.991,5.700 16.996,7.409 16.998 L 8.997 17.000 9.009 19.153 L 9.020 21.306 9.141 21.503 C 9.209 21.613,9.346 21.756,9.452 21.828 C 9.923 22.144,10.554 21.999,10.859 21.503 L 10.980 21.306 10.991 19.153 L 11.003 17.000 13.091 16.998 C 14.731 16.997,15.212 16.985,15.330 16.943 C 15.551 16.864,15.744 16.702,15.869 16.489 C 15.964 16.328,15.980 16.256,15.980 16.000 C 15.980 15.746,15.963 15.672,15.872 15.516 C 15.813 15.415,15.698 15.282,15.618 15.221 C 15.334 15.004,15.283 15.000,13.054 15.000 L 11.000 15.000 11.000 12.761 L 11.000 10.523 14.110 10.511 C 17.005 10.501,17.231 10.495,17.380 10.428 C 17.736 10.268,17.999 9.873,17.999 9.500 C 17.999 9.255,17.864 8.951,17.675 8.772 C 17.397 8.508,17.563 8.520,14.121 8.520 L 11.000 8.520 11.000 6.260 L 11.000 4.000 14.590 3.998 C 17.484 3.997,18.209 3.986,18.330 3.943 C 18.551 3.864,18.744 3.702,18.869 3.489 C 18.964 3.328,18.980 3.256,18.980 3.000 C 18.980 2.746,18.963 2.672,18.872 2.516 C 18.740 2.293,18.533 2.128,18.290 2.055 C 18.029 1.976,9.946 1.979,9.695 2.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const SwissFrancIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const SwissFranc = SwissFrancIcon;