@blockstack/ui
Version:
Blockstack UI components built using React and styled-components with styled-system.
20 lines (17 loc) • 563 B
JavaScript
import { createElement } from 'react';
import { Svg } from '../svg/index.esm.js';
var ExternalIcon = function ExternalIcon(props) {
return createElement(Svg, Object.assign({
width: "8",
height: "9",
viewBox: "0 0 8 9",
fill: "none"
}, props), createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M1.30849 0H7.04391H7.99975H7.99981V6.6919H7.04391V1.66447L0.707141 8.00185L0 7.29477L6.33818 0.955986H1.30849V0Z",
fill: "#677282"
}));
};
export { ExternalIcon };
//# sourceMappingURL=external-icon.esm.js.map