@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 1.69 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-slice" 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="M19.472 2.040 C 18.925 2.107,18.444 2.303,17.998 2.640 C 17.856 2.747,14.002 6.576,9.434 11.147 C 1.448 19.140,1.126 19.468,1.059 19.675 C 0.889 20.206,1.155 20.759,1.670 20.943 C 1.906 21.027,10.168 21.025,10.492 20.940 C 10.852 20.847,11.118 20.690,11.404 20.404 C 11.920 19.888,12.000 19.604,12.000 18.286 C 12.000 17.327,12.000 17.323,12.090 17.277 C 12.213 17.214,22.077 7.360,22.317 7.060 C 22.589 6.721,22.739 6.435,22.864 6.020 C 23.014 5.522,23.024 4.780,22.886 4.300 C 22.584 3.243,21.648 2.331,20.629 2.103 C 20.293 2.027,19.797 2.000,19.472 2.040 M20.340 4.119 C 20.721 4.286,20.972 4.683,20.972 5.119 C 20.971 5.640,21.296 5.284,15.899 10.681 L 11.000 15.580 10.210 14.790 L 9.420 14.000 14.300 9.117 C 17.193 6.223,19.243 4.202,19.334 4.155 C 19.645 3.993,20.021 3.979,20.340 4.119 M8.860 16.281 C 9.322 16.744,9.768 17.169,9.850 17.226 L 10.000 17.331 10.000 18.165 L 10.000 19.000 7.210 19.000 L 4.420 19.000 6.200 17.220 C 7.179 16.241,7.989 15.440,8.000 15.440 C 8.011 15.440,8.399 15.818,8.860 16.281 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const SliceIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Slice = SliceIcon;