@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 824 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const PlayIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M11.18 3.336c-2.287-1.24-4.524-1.434-6.24-.503-1.732.94-2.69 2.892-2.69 5.408v7.518c0 2.516.958 4.467 2.69 5.407 1.716.932 3.953.738 6.241-.502l6.947-3.76c2.28-1.235 3.622-2.98 3.622-4.904s-1.341-3.668-3.622-4.904z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(PlayIcon);
module.exports = ForwardRef;