@blockstack/ui
Version:
Blockstack UI components built using React and styled-components with styled-system.
23 lines (20 loc) • 674 B
JavaScript
import { createElement } from 'react';
import { Svg } from '../svg/index.esm.js';
var ExclamationMarkIcon = function ExclamationMarkIcon(props) {
return createElement(Svg, Object.assign({
width: "12",
height: "12",
fill: "none",
viewBox: "0 0 12 12"
}, props), createElement("circle", {
cx: "6",
cy: "6",
r: "6",
fill: props.color || 'currentColor'
}), createElement("path", {
fill: "#fff",
d: "M6.62 3.64a.622.622 0 10-1.244 0l.083 2.983a.54.54 0 001.081 0l.08-2.984zM6 9c.368 0 .687-.31.69-.694A.7.7 0 006 7.617.69.69 0 006 9z"
}));
};
export { ExclamationMarkIcon };
//# sourceMappingURL=exclamation-mark-icon.esm.js.map