@nomercyicons/react
Version:
24 lines • 2.31 kB
JavaScript
import * as React from "react";
function InstagramIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 48 48",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "currentColor",
fillRule: "evenodd",
d: "M24 0c6.518 0 7.335.028 9.895.144 2.555.117 4.3.523 5.826 1.116 1.578.613 2.917 1.434 4.25 2.768 1.335 1.334 2.156 2.673 2.77 4.251.592 1.527.998 3.271 1.115 5.826.116 2.56.144 3.377.144 9.895s-.028 7.335-.144 9.895c-.117 2.555-.523 4.3-1.116 5.826-.613 1.578-1.434 2.917-2.768 4.25-1.334 1.335-2.673 2.156-4.251 2.77-1.527.592-3.271.998-5.826 1.115-2.56.116-3.377.144-9.895.144s-7.335-.028-9.895-.144c-2.555-.117-4.3-.523-5.826-1.116-1.578-.613-2.917-1.434-4.25-2.768-1.335-1.334-2.156-2.673-2.769-4.251-.593-1.527-1-3.271-1.116-5.826C.028 31.335 0 30.518 0 24s.028-7.335.144-9.895c.117-2.555.523-4.3 1.116-5.826.613-1.578 1.434-2.917 2.768-4.25C5.362 2.693 6.701 1.872 8.28 1.26 9.806.667 11.55.26 14.105.144 16.665.028 17.482 0 24 0zm0 4.324c-6.408 0-7.167.025-9.698.14-2.34.107-3.61.498-4.457.827-1.12.435-1.92.955-2.759 1.795-.84.84-1.36 1.64-1.795 2.76-.33.845-.72 2.116-.827 4.456-.115 2.53-.14 3.29-.14 9.698s.025 7.167.14 9.698c.107 2.34.498 3.61.827 4.457.435 1.12.955 1.92 1.795 2.76.84.839 1.64 1.359 2.76 1.794.845.33 2.116.72 4.456.827 2.53.115 3.29.14 9.698.14 6.409 0 7.168-.025 9.698-.14 2.34-.107 3.61-.498 4.457-.827 1.12-.435 1.92-.955 2.759-1.795.84-.84 1.36-1.64 1.795-2.76.33-.845.72-2.116.827-4.456.115-2.53.14-3.29.14-9.698s-.025-7.167-.14-9.698c-.107-2.34-.498-3.61-.827-4.457-.435-1.12-.955-1.92-1.795-2.76-.84-.839-1.64-1.359-2.76-1.794-.845-.33-2.116-.72-4.456-.827-2.53-.115-3.29-.14-9.698-.14zm0 7.352c6.807 0 12.324 5.517 12.324 12.324 0 6.807-5.517 12.324-12.324 12.324-6.807 0-12.324-5.517-12.324-12.324 0-6.807 5.517-12.324 12.324-12.324zM24 32a8 8 0 100-16 8 8 0 000 16zm15.691-20.811a2.88 2.88 0 11-5.76 0 2.88 2.88 0 015.76 0z"
}));
}
const ForwardRef = React.forwardRef(InstagramIcon);
export default ForwardRef;