ddu_icons
Version:
小杜的自定义react图标库
51 lines (50 loc) • 1.19 kB
JavaScript
import { j as i } from "../node_modules/react/jsx-runtime.mjs";
import "../node_modules/react/index.mjs";
const l = (n) => {
const { color: o, size: e, fill: t } = n;
return /* @__PURE__ */ i.jsxs(
"svg",
{
width: e ? e * 1.5 : "24",
height: e ? e * 1.5 : "24",
viewBox: "0 0 48 48",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
children: [
/* @__PURE__ */ i.jsx(
"path",
{
d: "M42 5H6V13H42V5Z",
fill: t || "none",
stroke: o || "#333",
strokeWidth: "4",
strokeLinejoin: "round"
}
),
/* @__PURE__ */ i.jsx(
"path",
{
d: "M42 20H6V28H42V20Z",
fill: t || "none",
stroke: o || "#333",
strokeWidth: "4",
strokeLinejoin: "round"
}
),
/* @__PURE__ */ i.jsx(
"path",
{
d: "M42 35H6V43H42V35Z",
fill: t || "none",
stroke: o || "#333",
strokeWidth: "4",
strokeLinejoin: "round"
}
)
]
}
);
};
export {
l as default
};