@blockstack/ui
Version:
Blockstack UI components built using React and styled-components with styled-system.
28 lines (25 loc) • 849 B
JavaScript
import { createElement } from 'react';
import { Svg } from '../svg/index.esm.js';
var PlusCircleIcon = function PlusCircleIcon(props) {
return createElement(Svg, Object.assign({}, props), createElement("circle", {
cx: "12",
cy: "12",
r: "12",
fill: "currentColor"
}), createElement("g", {
clipPath: "url(#clip0)"
}, createElement("path", {
fill: "#fff",
fillRule: "evenodd",
d: "M8.36 11.25a.75.75 0 000 1.5h3.375v3.376a.75.75 0 001.5 0V12.75h3.377a.75.75 0 000-1.5h-3.376V7.874a.75.75 0 10-1.5 0v3.376H8.358z",
clipRule: "evenodd"
})), createElement("defs", null, createElement("clipPath", {
id: "clip0"
}, createElement("path", {
fill: "#fff",
d: "M4 12H16V24H4z",
transform: "rotate(-45 4 12)"
}))));
};
export { PlusCircleIcon };
//# sourceMappingURL=plus-circle-icon.esm.js.map