ddu_icons
Version:
小杜的自定义react图标库
29 lines (28 loc) • 721 B
JavaScript
import { j as r } from "../node_modules/react/jsx-runtime.mjs";
import "../node_modules/react/index.mjs";
const i = (s) => {
const { color: t, size: o } = s;
return /* @__PURE__ */ r.jsx(
"svg",
{
width: o ? o * 1.5 : "24",
height: o ? o * 1.5 : "24",
viewBox: "0 0 48 48",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
children: /* @__PURE__ */ r.jsx(
"path",
{
d: "M4 24C4 35.0457 12.9543 44 24 44C35.0457 44 44 35.0457 44 24C44 12.9543 35.0457 4 24 4",
stroke: t || "#333",
strokeWidth: "4",
strokeLinecap: "round",
strokeLinejoin: "round"
}
)
}
);
};
export {
i as default
};