@scaleflex/icons
Version:
SVG icons as React components
25 lines • 1.91 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size", "ref"];
import React from 'react';
export var Instagram = function Instagram(_ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 14 : _ref$size,
ref = _ref.ref,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "Instagram",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M36.4465 0H13.5535C5.92255 0 0 6.15034 0 13.5535V36.5604C0 44.0775 5.92255 50 13.5535 50H36.5604C44.0775 50 50 44.0774 50 36.4465V13.5535C50 6.15034 43.8497 0 36.4465 0ZM34.2825 31.6629C32.574 34.0547 29.8405 35.6492 26.8793 36.1048C26.1959 36.3326 25.7403 36.3326 25.1708 36.3326C22.779 36.3326 20.3872 35.4214 18.451 34.0547C16.0592 32.3462 14.4647 29.6128 14.0091 26.6515C13.4396 23.5763 14.3508 20.615 16.0592 18.2232C17.7677 15.8314 20.5011 14.2369 23.4624 13.7813C24.4875 13.5535 25.7403 13.5535 26.7654 13.7813C29.1572 14.123 31.4351 15.1481 33.1435 16.8565C34.8519 18.5649 35.877 20.8428 36.2187 23.2346C36.6743 26.3098 35.7631 29.2711 34.2825 31.6629ZM39.0661 13.6674C38.7244 14.0091 38.1549 14.2369 37.6993 14.2369C37.1298 14.2369 36.6743 14.0091 36.3326 13.6674C35.9909 13.3257 35.7631 12.7563 35.7631 12.3007C35.7631 11.8451 35.9909 11.2756 36.3326 10.9339C36.6743 10.5923 37.2437 10.3645 37.6993 10.3645C38.1549 10.3645 38.7244 10.5923 39.0661 10.9339C39.4077 11.2756 39.6355 11.959 39.6355 12.3007C39.5216 12.8702 39.4077 13.3257 39.0661 13.6674Z",
fill: color
}));
};
export default Instagram;