UNPKG

944 BJavaScriptView Raw
1const React = require("react");
2
3function PlayCircleIcon({
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: "M15.91 11.672a.375.375 0 010 .656l-5.603 3.113a.375.375 0 01-.557-.328V8.887c0-.286.307-.466.557-.327l5.603 3.112z"
27 }));
28}
29
30const ForwardRef = React.forwardRef(PlayCircleIcon);
31module.exports = ForwardRef;
\No newline at end of file