@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 1.15 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-tally-2" 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.695 3.057 C 3.466 3.129,3.256 3.299,3.128 3.516 L 3.020 3.700 3.020 12.003 L 3.020 20.306 3.141 20.503 C 3.543 21.156,4.457 21.156,4.859 20.503 L 4.980 20.306 4.980 12.003 L 4.980 3.700 4.872 3.516 C 4.628 3.101,4.150 2.915,3.695 3.057 M8.695 3.057 C 8.466 3.129,8.256 3.299,8.128 3.516 L 8.020 3.700 8.020 12.003 L 8.020 20.306 8.141 20.503 C 8.543 21.156,9.457 21.156,9.859 20.503 L 9.980 20.306 9.980 12.003 L 9.980 3.700 9.872 3.516 C 9.628 3.101,9.150 2.915,8.695 3.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const Tally2Icon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const Tally2 = Tally2Icon;