ddu_icons
Version:
小杜的自定义react图标库
41 lines (40 loc) • 1.1 kB
JavaScript
import { j as s } from "../node_modules/react/jsx-runtime.mjs";
import "../node_modules/react/index.mjs";
const l = (e) => {
const { color: o, size: t, fill: n } = e;
return /* @__PURE__ */ s.jsxs(
"svg",
{
width: t ? t * 1.5 : "24",
height: t ? t * 1.5 : "24",
viewBox: "0 0 48 48",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
children: [
/* @__PURE__ */ s.jsx(
"path",
{
d: "M24 4L18 10H10V18L4 24L10 30V38H18L24 44L30 38H38V30L44 24L38 18V10H30L24 4Z",
fill: n || "none",
stroke: o || "#333",
strokeWidth: "4",
strokeLinejoin: "round"
}
),
/* @__PURE__ */ s.jsx(
"path",
{
d: "M24 30C27.3137 30 30 27.3137 30 24C30 20.6863 27.3137 18 24 18C20.6863 18 18 20.6863 18 24C18 27.3137 20.6863 30 24 30Z",
fill: n || "none",
stroke: o || "#333",
strokeWidth: "4",
strokeLinejoin: "round"
}
)
]
}
);
};
export {
l as default
};