@blockstack/ui
Version:
Blockstack UI components built using React and styled-components with styled-system.
44 lines (41 loc) • 960 B
JavaScript
import { createElement } from 'react';
import { Svg } from '../svg/index.esm.js';
var BlockchainIcon = function BlockchainIcon(props) {
var color = props.color || 'currentColor';
return createElement(Svg, Object.assign({}, props), createElement("rect", {
width: "12",
height: "12",
rx: "2.25",
fill: color
}), createElement("rect", {
opacity: "0.6",
x: "12",
y: "12",
width: "12",
height: "12",
rx: "2.25",
fill: color
}), createElement("rect", {
opacity: "0.4",
x: "14.75",
y: "2.75",
width: "6.5",
height: "6.5",
rx: "1",
stroke: color,
strokeWidth: "1.5",
strokeLinejoin: "round"
}), createElement("rect", {
opacity: "0.4",
x: "2.75",
y: "14.75",
width: "6.5",
height: "6.5",
rx: "1",
stroke: color,
strokeWidth: "1.5",
strokeLinejoin: "round"
}));
};
export { BlockchainIcon };
//# sourceMappingURL=blockchain-icon.esm.js.map