UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.61 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-scissors" 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="M5.358 2.061 C 4.230 2.237,3.143 2.974,2.569 3.953 C 1.320 6.083,2.233 8.785,4.512 9.704 C 5.473 10.091,6.529 10.090,7.494 9.701 C 7.684 9.625,7.881 9.535,7.931 9.502 C 8.020 9.444,8.053 9.473,9.301 10.721 L 10.580 12.000 9.303 13.277 L 8.026 14.554 7.763 14.423 C 7.244 14.163,6.564 14.000,6.000 14.000 C 4.635 14.000,3.253 14.787,2.569 15.953 C 1.320 18.083,2.233 20.785,4.512 21.704 C 6.558 22.528,8.877 21.538,9.704 19.488 C 9.994 18.769,10.070 17.977,9.921 17.243 C 9.844 16.869,9.627 16.260,9.502 16.069 C 9.444 15.980,9.562 15.858,15.104 10.319 C 18.387 7.037,20.810 4.584,20.873 4.480 C 20.964 4.327,20.980 4.254,20.980 4.000 C 20.980 3.746,20.963 3.672,20.872 3.516 C 20.618 3.084,20.138 2.906,19.657 3.065 C 19.477 3.125,19.141 3.448,15.730 6.855 L 12.000 10.579 10.721 9.301 C 9.473 8.053,9.444 8.020,9.502 7.931 C 9.627 7.740,9.844 7.132,9.921 6.757 C 10.070 6.024,9.994 5.230,9.705 4.516 C 9.172 3.197,8.001 2.269,6.605 2.058 C 6.144 1.989,5.816 1.990,5.358 2.061 M6.523 4.073 C 7.262 4.266,7.850 4.924,7.967 5.690 C 8.029 6.098,7.967 6.522,7.793 6.880 C 7.638 7.198,7.227 7.625,6.930 7.775 C 6.492 7.997,5.962 8.059,5.508 7.940 C 4.823 7.762,4.249 7.194,4.073 6.523 C 3.683 5.028,5.028 3.683,6.523 4.073 M14.495 13.857 C 14.266 13.929,14.056 14.099,13.928 14.316 C 13.837 14.472,13.820 14.546,13.820 14.800 C 13.820 15.054,13.836 15.128,13.927 15.280 C 14.062 15.506,19.368 20.805,19.560 20.905 C 19.659 20.957,19.788 20.979,20.000 20.979 C 20.258 20.980,20.327 20.964,20.492 20.867 C 20.968 20.587,21.138 19.968,20.866 19.508 C 20.811 19.416,19.545 18.122,18.053 16.634 C 15.428 14.015,15.333 13.925,15.123 13.864 C 14.866 13.788,14.719 13.787,14.495 13.857 M6.523 16.073 C 7.262 16.266,7.850 16.924,7.967 17.690 C 8.067 18.343,7.873 18.933,7.403 19.404 C 7.002 19.807,6.547 20.000,6.000 20.000 C 5.485 20.000,5.038 19.822,4.653 19.465 C 3.323 18.229,4.189 16.005,6.000 16.005 C 6.143 16.005,6.378 16.036,6.523 16.073 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const ScissorsIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const Scissors = ScissorsIcon;