@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
26 lines • 843 B
JavaScript
const React = require("react");
function PlayIcon({
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",
strokeMiterlimit: 10,
d: "M3 12V8.24c0-4.667 3.519-6.578 7.824-4.244l3.473 1.88 3.474 1.879c4.305 2.334 4.305 6.156 0 8.49l-3.474 1.88-3.473 1.88C6.519 22.337 3 20.426 3 15.758z"
}));
}
const ForwardRef = React.forwardRef(PlayIcon);
module.exports = ForwardRef;