UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 1.48 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-circle-small" 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.540 5.023 C 10.478 5.125,9.692 5.335,8.910 5.726 C 6.838 6.762,5.448 8.666,5.074 10.980 C 5.008 11.393,5.008 12.607,5.074 13.020 C 5.574 16.112,7.888 18.426,10.980 18.926 C 11.392 18.992,12.607 18.992,13.020 18.926 C 16.109 18.428,18.428 16.109,18.926 13.020 C 18.954 12.844,18.977 12.385,18.977 12.000 C 18.977 11.056,18.876 10.462,18.573 9.620 C 17.715 7.237,15.581 5.473,13.102 5.098 C 12.726 5.041,11.813 4.997,11.540 5.023 M12.552 7.043 C 14.413 7.246,16.001 8.479,16.680 10.248 C 17.092 11.320,17.085 12.720,16.663 13.793 C 16.120 15.174,14.991 16.256,13.600 16.732 C 13.044 16.922,12.670 16.980,12.000 16.980 C 11.330 16.980,10.956 16.922,10.400 16.732 C 8.808 16.188,7.580 14.864,7.161 13.240 C 6.920 12.307,6.983 11.125,7.320 10.248 C 8.146 8.096,10.274 6.793,12.552 7.043 " stroke="none" fill="black" fill-rule="evenodd"></path></svg>`; export const CircleSmallIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const CircleSmall = CircleSmallIcon;