@spark-ui/icons
Version:
spark-ui icons
29 lines (28 loc) • 779 B
JavaScript
// src/icons/Plus.tsx
import React from "react";
var Plus = ({
title,
fill = "currentColor",
stroke = "none",
ref,
...props
}) => /* @__PURE__ */ React.createElement(
"svg",
{
ref,
viewBox: "0 0 24 24",
xmlns: "http://www.w3.org/2000/svg",
"data-title": "Plus",
...{ ...title && { "data-title": title }, fill, stroke, ...props },
dangerouslySetInnerHTML: {
__html: (title === void 0 ? "" : `<title>${title}</title>`) + '<path fill-rule="evenodd" d="m12,2c.55,0,1,.45,1,1v7.94h8c.55,0,1,.45,1,1s-.45,1-1,1h-8v8.06c0,.55-.45,1-1,1s-1-.45-1-1v-8.06H3c-.55,0-1-.45-1-1s.45-1,1-1h8V3c0-.55.45-1,1-1Z"/>'
}
}
);
Plus.displayName = "Plus";
var tags = ["Plus", ""];
export {
Plus,
tags
};
//# sourceMappingURL=chunk-5ENVYCME.mjs.map