styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
20 lines (19 loc) • 1.17 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.Youtube = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "none",
"xmlns": "http://www.w3.org/2000/svg",
"stroke": "currentColor",
"strokeLinecap": "round",
"strokeLinejoin": "round",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M22.54 6.42a2.78 2.78 0 00-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 00-1.94 2A29 29 0 001 11.75a29 29 0 00.46 5.33A2.78 2.78 0 003.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 001.94-2 29 29 0 00.46-5.25 29 29 0 00-.46-5.33z", key: "k0" }),
React.createElement("polygon", { points: "9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02", key: "k1" })));
});
exports.Youtube.displayName = 'Youtube';
exports.YoutubeDimensions = { height: 24, width: 24 };
;