ddu_icons
Version:
小杜的自定义react图标库
24 lines (23 loc) • 710 B
JavaScript
import { j as i } from "../node_modules/react/jsx-runtime.mjs";
import "../node_modules/react/index.mjs";
const o = (l) => {
const { color: c, size: r } = l;
return /* @__PURE__ */ i.jsxs(
"svg",
{
width: r ? r * 1.5 : "24",
height: r ? r * 1.5 : "24",
viewBox: "0 0 48 48",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
children: [
/* @__PURE__ */ i.jsx("circle", { cx: "24", cy: "12", r: "3", fill: c || "#333" }),
/* @__PURE__ */ i.jsx("circle", { cx: "24", cy: "24", r: "3", fill: c || "#333" }),
/* @__PURE__ */ i.jsx("circle", { cx: "24", cy: "35", r: "3", fill: c || "#333" })
]
}
);
};
export {
o as default
};