@morphemeicons/react
Version:
Morpheme Icons React
31 lines (29 loc) • 1.36 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",
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.581 7.2a2.528 2.528 0 00-1.763-1.818C18.254 5 12 5 12 5s-6.254 0-7.818.418A2.527 2.527 0 002.42 7.236 26.362 26.362 0 002 12.046c-.01 1.624.13 3.246.418 4.844a2.527 2.527 0 001.763 1.746c1.564.418 7.818.418 7.818.418s6.254 0 7.818-.418a2.528 2.528 0 001.763-1.818c.284-1.575.424-3.173.419-4.773A26.36 26.36 0 0021.58 7.2z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M9.75 9.465c0-.477 0-.716.1-.849a.5.5 0 01.364-.199c.166-.012.367.117.769.375l3.942 2.535c.349.224.523.336.583.478a.5.5 0 010 .39c-.06.142-.234.254-.583.478l-3.942 2.535c-.402.258-.603.387-.769.375a.5.5 0 01-.364-.2c-.1-.132-.1-.371-.1-.848v-5.07z"
}));
}
const ForwardRef = React.forwardRef(YoutubeIcon);
module.exports = ForwardRef;