@iconscout/react-unicons-monochrome
Version:
1,100+ vector icons as easy to use React Components
26 lines • 766 B
JavaScript
import * as React from "react";
import "../utils/style.css";
function UimExclamationCircle(props) {
return /*#__PURE__*/React.createElement("svg", Object.assign({}, props, {
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
width: props.size || '1em',
height: props.size || '1em',
fill: "currentColor",
className: `ui-svg-inline ${props.className || ''}`
}), /*#__PURE__*/React.createElement("circle", {
cx: 12,
cy: 12,
r: 10,
opacity: 0.5
}), /*#__PURE__*/React.createElement("circle", {
cx: 12,
cy: 16,
r: 1,
opacity: 1
}), /*#__PURE__*/React.createElement("path", {
opacity: 1,
d: "M12 13a1 1 0 0 1-1-1V8a1 1 0 0 1 2 0v4a1 1 0 0 1-1 1Z"
}));
}
export default UimExclamationCircle;