UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

23 lines 959 B
import * as React from "react"; function YoutubeIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M19.792 5.415c.86.23 1.54.911 1.771 1.771C21.988 8.752 22 12 22 12s0 3.26-.424 4.814a2.52 2.52 0 0 1-1.771 1.771c-1.553.424-7.805.424-7.805.424s-6.252 0-7.805-.424a2.52 2.52 0 0 1-1.771-1.771C2 15.248 2 12 2 12s0-3.248.41-4.801c.232-.86.912-1.54 1.772-1.771 1.554-.424 7.805-.437 7.805-.437s6.252 0 7.805.424M15.184 12l-5.187 3.004V8.996z", clipRule: "evenodd" })); } const ForwardRef = React.forwardRef(YoutubeIcon); export default ForwardRef;