@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
21 lines • 1.01 kB
JavaScript
import * as React from "react";
function TwitterIcon({
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: "M19.953 7.92c.012.176.012.353.012.53 0 5.423-4.128 11.676-11.675 11.676v-.004A11.6 11.6 0 0 1 2 18.282q.486.06.977.06a8.24 8.24 0 0 0 5.096-1.76 4.11 4.11 0 0 1-3.834-2.85 4.1 4.1 0 0 0 1.853-.07A4.104 4.104 0 0 1 2.8 9.64v-.052c.57.318 1.21.494 1.863.514a4.11 4.11 0 0 1-1.27-5.48 11.65 11.65 0 0 0 8.456 4.288 4.108 4.108 0 0 1 6.993-3.742 8.2 8.2 0 0 0 2.606-.997 4.12 4.12 0 0 1-1.804 2.27A8.2 8.2 0 0 0 22 5.795a8.3 8.3 0 0 1-2.047 2.125"
}));
}
const ForwardRef = React.forwardRef(TwitterIcon);
export default ForwardRef;