ddu_icons
Version:
小杜的自定义react图标库
30 lines (29 loc) • 836 B
JavaScript
import { j as i } from "../node_modules/react/jsx-runtime.mjs";
import "../node_modules/react/index.mjs";
const l = (n) => {
const { color: t, size: o, fill: e } = n;
return /* @__PURE__ */ i.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__ */ i.jsx(
"path",
{
d: "M15 8C8.92487 8 4 12.9249 4 19C4 30 17 40 24 42.3262C31 40 44 30 44 19C44 12.9249 39.0751 8 33 8C29.2797 8 25.9907 9.8469 24 12.6738C22.0093 9.8469 18.7203 8 15 8Z",
fill: e || "none",
stroke: t || "#333",
strokeWidth: "4",
strokeLinecap: "round",
strokeLinejoin: "round"
}
)
}
);
};
export {
l as default
};