@digital-ai/plugin-dai-release
Version:
Frontend functionalities for the dai-release backstage plugin
28 lines (25 loc) • 574 B
JavaScript
import React from 'react';
import { createSvgIcon } from '@mui/material/utils';
const PlusIcon = createSvgIcon(
/* @__PURE__ */ React.createElement(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor"
},
/* @__PURE__ */ React.createElement(
"path",
{
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M12 4.5v15m7.5-7.5h-15"
}
)
),
"Plus"
);
export { PlusIcon };
//# sourceMappingURL=icon.esm.js.map