mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-26 18:51:52 +02:00
31 lines
No EOL
944 B
JavaScript
31 lines
No EOL
944 B
JavaScript
const React = require("react");
|
|
|
|
function PlayCircleIcon({
|
|
title,
|
|
titleId,
|
|
...props
|
|
}, svgRef) {
|
|
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
xmlns: "http://www.w3.org/2000/svg",
|
|
fill: "none",
|
|
viewBox: "0 0 24 24",
|
|
strokeWidth: 1.5,
|
|
stroke: "currentColor",
|
|
"aria-hidden": "true",
|
|
ref: svgRef,
|
|
"aria-labelledby": titleId
|
|
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
id: titleId
|
|
}, title) : null, /*#__PURE__*/React.createElement("path", {
|
|
strokeLinecap: "round",
|
|
strokeLinejoin: "round",
|
|
d: "M21 12a9 9 0 11-18 0 9 9 0 0118 0z"
|
|
}), /*#__PURE__*/React.createElement("path", {
|
|
strokeLinecap: "round",
|
|
strokeLinejoin: "round",
|
|
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"
|
|
}));
|
|
}
|
|
|
|
const ForwardRef = React.forwardRef(PlayCircleIcon);
|
|
module.exports = ForwardRef; |