@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 • 2.71 kB
JavaScript
const React = require("react");
function YoutubeIcon({
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: "m14.813 12.59-.605-.796-.014.01-.013.011zm0-1.003-.651.758.044.038.048.033zm-3.447-2.962.652-.758-.028-.024-.03-.022zm-.723.443 1-.003V9.05zm.015 5.817-1 .002v.024l.001.025zm.749.485.543.84.046-.03.043-.036zM12 18c-1.602 0-3.312 0-4.742-.124-.715-.062-1.324-.152-1.794-.276-.503-.132-.705-.267-.756-.32l-1.44 1.389c.445.46 1.093.71 1.688.866.627.165 1.363.267 2.13.333C8.619 20.001 10.42 20 12 20zM2 12c0 1.623-.002 2.937.132 3.969.137 1.057.432 1.97 1.137 2.7l1.44-1.388c-.285-.295-.484-.72-.594-1.57C4.002 14.839 4 13.678 4 12zm18 0c0 1.677-.002 2.838-.115 3.712-.11.849-.31 1.274-.593 1.569l1.44 1.388c.704-.73.999-1.643 1.136-2.7.134-1.032.132-2.346.132-3.969zm-8 8c1.58 0 3.381 0 4.915-.132.766-.066 1.502-.168 2.13-.333.594-.156 1.242-.406 1.686-.866l-1.44-1.388c-.05.052-.252.187-.755.32-.47.123-1.079.213-1.794.275-1.43.123-3.14.124-4.742.124zm0-14c1.602 0 3.312 0 4.742.124.715.062 1.324.152 1.794.276.503.132.705.267.756.32l1.44-1.389c-.445-.46-1.093-.71-1.688-.866-.627-.165-1.363-.267-2.13-.333C15.382 3.999 13.58 4 12 4zm10 6c0-1.623.002-2.937-.132-3.969-.137-1.058-.432-1.97-1.137-2.7l-1.44 1.388c.285.295.484.72.594 1.57.113.873.115 2.034.115 3.711zM12 4c-1.58 0-3.381 0-4.914.132-.767.066-1.503.168-2.13.333-.595.156-1.243.406-1.687.866l1.44 1.388c.05-.052.252-.187.755-.32.47-.123 1.079-.213 1.794-.275C8.688 6.001 10.398 6 12 6zm-8 8c0-1.677.002-2.838.115-3.712.11-.849.31-1.274.593-1.569l-1.44-1.388c-.704.73-.999 1.642-1.136 2.7C1.998 9.063 2 10.377 2 12zm11.418 1.386c.332-.251.726-.688.725-1.313 0-.644-.417-1.077-.77-1.315l-1.119 1.658c.085.057-.11-.04-.11-.34-.001-.282.174-.365.064-.282zm.047-2.558-3.447-2.961-1.304 1.517 3.448 2.961zM11.96 7.821c-.364-.27-.973-.484-1.571-.158-.597.325-.754.954-.745 1.422l2-.035c-.002-.082.024.194-.299.37-.324.176-.566.015-.573.01zm-2.317 1.25.015 5.816 2-.005-.015-5.817zm.016 5.865c.019.369.125 1.012.696 1.368.637.397 1.28.108 1.595-.094l-1.085-1.68c-.035.022-.003-.008.089-.023a.68.68 0 0 1 .701.372c.016.039.006.034.002-.045zm2.38 1.208 3.406-2.779-1.264-1.55-3.406 2.78z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(YoutubeIcon);
module.exports = ForwardRef;