UNPKG

@astraicons/react

Version:

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

23 lines 813 B
import * as React from "react"; function TwitchIcon({ 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", { d: "M7 2 3.428 5.571V18.43h4.286V22l3.572-3.571h2.857L20.57 12V2zm12.143 9.286-2.857 2.857h-2.858l-2.5 2.5v-2.5H7.714V3.429h11.429z" }), /*#__PURE__*/React.createElement("path", { d: "M17 5.929H15.57v4.285H17zM13.071 5.929h-1.428v4.285h1.428z" })); } const ForwardRef = React.forwardRef(TwitchIcon); export default ForwardRef;