ddu_icons
Version:
小杜的自定义react图标库
41 lines (40 loc) • 1.22 kB
JavaScript
import { j as s } from "../node_modules/react/jsx-runtime.mjs";
import "../node_modules/react/index.mjs";
const d = (r) => {
const { color: o, size: t, fill: e } = r;
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: "M13 12.4316V7.8125C13 6.2592 14.2592 5 15.8125 5H40.1875C41.7408 5 43 6.2592 43 7.8125V32.1875C43 33.7408 41.7408 35 40.1875 35H35.5163",
stroke: o || "#333",
strokeWidth: "4",
strokeLinecap: "round",
strokeLinejoin: "round"
}
),
/* @__PURE__ */ s.jsx(
"path",
{
d: "M32.1875 13H7.8125C6.2592 13 5 14.2592 5 15.8125V40.1875C5 41.7408 6.2592 43 7.8125 43H32.1875C33.7408 43 35 41.7408 35 40.1875V15.8125C35 14.2592 33.7408 13 32.1875 13Z",
fill: e || "none",
stroke: o || "#333",
strokeWidth: "4",
strokeLinejoin: "round"
}
)
]
}
);
};
export {
d as default
};