@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.77 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-copyright" 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.280 1.023 C 11.203 1.032,10.951 1.059,10.720 1.083 C 8.832 1.283,6.991 2.023,5.360 3.235 C 4.751 3.688,3.684 4.755,3.226 5.367 C 0.728 8.714,0.301 13.032,2.097 16.780 C 2.643 17.918,3.276 18.801,4.238 19.762 C 5.199 20.724,6.082 21.357,7.220 21.903 C 10.967 23.699,15.288 23.270,18.637 20.770 C 19.246 20.316,20.316 19.246,20.770 18.637 C 23.744 14.652,23.744 9.348,20.770 5.363 C 20.316 4.755,19.247 3.686,18.640 3.235 C 17.045 2.049,15.365 1.360,13.423 1.096 C 13.000 1.038,11.574 0.990,11.280 1.023 M13.320 3.101 C 15.883 3.488,18.124 4.931,19.560 7.120 C 19.863 7.583,20.303 8.479,20.492 9.020 C 20.838 10.013,20.977 10.865,20.977 12.000 C 20.977 13.493,20.720 14.621,20.080 15.940 C 19.375 17.394,18.311 18.607,16.927 19.532 C 16.138 20.060,14.876 20.588,13.908 20.797 C 11.266 21.366,8.479 20.708,6.370 19.019 C 4.857 17.807,3.722 16.029,3.267 14.160 C 3.081 13.397,3.023 12.888,3.023 12.000 C 3.023 10.507,3.280 9.379,3.920 8.060 C 4.971 5.891,6.877 4.221,9.160 3.466 C 9.865 3.233,10.432 3.118,11.340 3.024 C 11.662 2.991,12.911 3.039,13.320 3.101 M11.400 7.044 C 9.203 7.290,7.394 9.056,7.060 11.280 C 6.741 13.405,7.871 15.545,9.811 16.489 C 10.153 16.655,10.637 16.820,11.041 16.907 C 11.511 17.008,12.488 17.008,12.960 16.907 C 13.927 16.700,14.777 16.260,15.407 15.642 C 15.674 15.379,15.723 15.309,15.783 15.100 C 15.910 14.660,15.739 14.231,15.338 13.980 C 15.166 13.872,15.113 13.860,14.823 13.861 C 14.457 13.861,14.440 13.869,13.899 14.312 C 13.547 14.600,13.265 14.752,12.839 14.886 C 12.582 14.967,12.461 14.980,11.980 14.977 C 11.492 14.974,11.380 14.961,11.113 14.872 C 10.619 14.708,10.299 14.506,9.896 14.104 C 9.483 13.690,9.275 13.355,9.125 12.861 C 9.043 12.589,9.028 12.457,9.028 12.000 C 9.028 11.543,9.043 11.411,9.125 11.139 C 9.275 10.645,9.483 10.310,9.896 9.896 C 10.309 9.483,10.644 9.276,11.139 9.125 C 11.553 9.000,12.350 8.983,12.760 9.091 C 13.158 9.196,13.623 9.451,14.018 9.782 C 14.415 10.114,14.571 10.178,14.926 10.152 C 15.353 10.121,15.715 9.795,15.806 9.360 C 15.903 8.895,15.681 8.519,15.011 8.014 C 13.981 7.239,12.708 6.897,11.400 7.044 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const CopyrightIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Copyright = CopyrightIcon;