@roochnetwork/rooch-sdk-kit
Version:
Rooch SDK Kit
42 lines (41 loc) • 930 B
JavaScript
// src/components/icons/PlusIcon.tsx
import { jsx, jsxs } from "react/jsx-runtime";
function PlusIcon({ className }) {
return /* @__PURE__ */ jsxs(
"svg",
{
className,
width: "16",
height: "16",
viewBox: "0 0 16 16",
fill: "none",
xmlns: "http://www.w3.org/2000/svg",
children: [
/* @__PURE__ */ jsx(
"path",
{
d: "M8 3.33334V12.6667",
stroke: "currentColor",
strokeWidth: "1.5",
strokeLinecap: "round",
strokeLinejoin: "round"
}
),
/* @__PURE__ */ jsx(
"path",
{
d: "M3.33334 8H12.6667",
stroke: "currentColor",
strokeWidth: "1.5",
strokeLinecap: "round",
strokeLinejoin: "round"
}
)
]
}
);
}
export {
PlusIcon
};
//# sourceMappingURL=PlusIcon.js.map