UNPKG

973 BJavaScriptView Raw
1const React = require("react");
2function PlayCircleIcon({
3 title,
4 titleId,
5 ...props
6}, svgRef) {
7 return /*#__PURE__*/React.createElement("svg", Object.assign({
8 xmlns: "http://www.w3.org/2000/svg",
9 fill: "none",
10 viewBox: "0 0 24 24",
11 strokeWidth: 1.5,
12 stroke: "currentColor",
13 "aria-hidden": "true",
14 "data-slot": "icon",
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 1 1-18 0 9 9 0 0 1 18 0Z"
23 }), /*#__PURE__*/React.createElement("path", {
24 strokeLinecap: "round",
25 strokeLinejoin: "round",
26 d: "M15.91 11.672a.375.375 0 0 1 0 .656l-5.603 3.113a.375.375 0 0 1-.557-.328V8.887c0-.286.307-.466.557-.327l5.603 3.112Z"
27 }));
28}
29const ForwardRef = React.forwardRef(PlayCircleIcon);
30module.exports = ForwardRef;
\No newline at end of file