UNPKG

958 BJavaScriptView Raw
1const React = require("react");
2
3function StopCircleIcon({
4 title,
5 titleId,
6 ...props
7}, svgRef) {
8 return /*#__PURE__*/React.createElement("svg", Object.assign({
9 xmlns: "http://www.w3.org/2000/svg",
10 fill: "none",
11 viewBox: "0 0 24 24",
12 strokeWidth: 1.5,
13 stroke: "currentColor",
14 "aria-hidden": "true",
15 ref: svgRef,
16 "aria-labelledby": titleId
17 }, props), title ? /*#__PURE__*/React.createElement("title", {
18 id: titleId
19 }, title) : null, /*#__PURE__*/React.createElement("path", {
20 strokeLinecap: "round",
21 strokeLinejoin: "round",
22 d: "M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
23 }), /*#__PURE__*/React.createElement("path", {
24 strokeLinecap: "round",
25 strokeLinejoin: "round",
26 d: "M9 9.563C9 9.252 9.252 9 9.563 9h4.874c.311 0 .563.252.563.563v4.874c0 .311-.252.563-.563.563H9.564A.562.562 0 019 14.437V9.564z"
27 }));
28}
29
30const ForwardRef = React.forwardRef(StopCircleIcon);
31module.exports = ForwardRef;
\No newline at end of file