@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.82 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-book-copy" 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.499 1.043 C 2.383 1.230,1.461 2.048,1.114 3.160 L 1.020 3.460 1.020 10.000 L 1.020 16.540 1.114 16.840 C 1.419 17.818,2.164 18.569,3.140 18.882 C 3.383 18.960,3.531 18.974,4.260 18.990 C 4.805 19.002,5.158 18.993,5.264 18.964 C 5.497 18.901,5.737 18.714,5.867 18.492 C 5.964 18.327,5.980 18.257,5.980 18.000 C 5.980 17.746,5.963 17.672,5.872 17.516 C 5.760 17.325,5.567 17.154,5.373 17.073 C 5.307 17.045,4.934 17.016,4.480 17.003 C 3.724 16.981,3.694 16.977,3.516 16.872 C 2.935 16.530,2.833 15.774,3.303 15.303 C 3.561 15.045,3.743 15.000,4.537 14.998 C 5.230 14.996,5.378 14.967,5.619 14.783 C 5.696 14.725,5.808 14.592,5.869 14.489 C 5.964 14.328,5.980 14.256,5.980 14.000 C 5.980 13.745,5.964 13.672,5.871 13.514 C 5.731 13.276,5.485 13.096,5.221 13.037 C 4.922 12.970,3.531 13.011,3.240 13.095 C 3.119 13.130,3.016 13.159,3.010 13.160 C 3.005 13.160,3.000 11.075,3.000 8.527 C 3.000 3.298,2.981 3.625,3.303 3.303 C 3.628 2.978,3.181 3.000,9.537 2.998 C 14.147 2.997,15.207 2.987,15.330 2.943 C 15.551 2.864,15.744 2.702,15.869 2.489 C 15.964 2.328,15.980 2.256,15.980 2.000 C 15.980 1.746,15.963 1.672,15.872 1.516 C 15.740 1.293,15.533 1.128,15.290 1.055 C 15.138 1.009,14.131 1.001,9.404 1.005 C 6.267 1.007,3.609 1.025,3.499 1.043 M10.499 5.043 C 9.380 5.233,8.461 6.048,8.114 7.160 L 8.020 7.460 8.020 14.000 L 8.020 20.540 8.114 20.840 C 8.422 21.827,9.173 22.578,10.160 22.886 L 10.460 22.980 16.160 22.980 L 21.860 22.980 22.104 22.867 C 22.413 22.724,22.721 22.415,22.868 22.100 L 22.980 21.860 22.980 14.000 L 22.980 6.140 22.867 5.896 C 22.724 5.587,22.415 5.279,22.100 5.132 L 21.860 5.020 16.280 5.014 C 13.211 5.011,10.609 5.024,10.499 5.043 M21.000 11.999 L 21.000 16.998 15.730 17.010 C 10.893 17.021,10.442 17.028,10.240 17.091 C 10.119 17.128,10.015 17.159,10.010 17.160 C 10.005 17.160,10.000 15.075,10.000 12.527 C 10.000 7.297,9.981 7.625,10.304 7.303 C 10.621 6.986,10.240 7.006,15.930 7.003 L 21.000 7.000 21.000 11.999 M21.000 20.001 L 21.000 21.001 15.850 20.991 L 10.700 20.980 10.516 20.872 C 9.935 20.530,9.833 19.774,10.304 19.303 C 10.621 18.986,10.240 19.006,15.930 19.003 L 21.000 19.000 21.000 20.001 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const BookCopyIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const BookCopy = BookCopyIcon;