@jfstech/icons-react
Version:
<p align="center"> <a href="https://jfstech.uk" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/JFS-Tech/icons/HEAD/.github/logo-dark.svg"> <source media="(prefers-color
25 lines • 1.7 kB
JavaScript
const React = require("react");
function Play02Icon({
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",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "#000",
d: "m15.374 12.759-.545-.838-.014.009-.014.01zm0-1.29-.593.805.045.033.048.027zm-5.17-3.808.593-.805-.029-.02-.03-.02zM9.12 8.23l1-.003V8.21zm.021 7.479-1 .003v.028l.002.028zm1.124.623.484.875.046-.025.043-.03zM12 20a8 8 0 0 1-8-8H2c0 5.523 4.477 10 10 10zm8-8a8 8 0 0 1-8 8v2c5.523 0 10-4.477 10-10zm-8-8a8 8 0 0 1 8 8h2c0-5.523-4.477-10-10-10zm0-2C6.477 2 2 6.477 2 12h2a8 8 0 0 1 8-8zm3.92 11.597c.412-.268.95-.758.95-1.503-.002-.768-.568-1.244-.995-1.491l-1.001 1.732c.094.054.105.078.085.053a.5.5 0 0 1-.09-.291c0-.152.059-.244.073-.263.01-.013-.012.021-.113.087zm.047-2.934-5.17-3.807-1.186 1.61 5.17 3.808zM10.74 6.816c-.453-.286-1.096-.455-1.707-.17-.666.312-.925.98-.912 1.604l2-.04c-.002-.047.009-.019-.026.048a.47.47 0 0 1-.216.2c-.2.094-.293-.005-.21.048zm-2.62 1.417.022 7.479 2-.006-.021-7.479zm.024 7.535c.03.51.208 1.205.866 1.556.647.346 1.316.118 1.74-.117l-.968-1.75c-.089.05-.118.049-.093.045a.45.45 0 0 1 .263.058c.127.068.184.16.2.196.012.026-.005.002-.011-.106zm2.695 1.384 5.11-3.574L14.8 11.94l-5.109 3.574z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(Play02Icon);
module.exports = ForwardRef;