UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

19 lines (18 loc) 937 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Instagram = React.forwardRef(function (props, ref) { var attrs = { "fill": "none", "xmlns": "http://www.w3.org/2000/svg", "stroke": "currentColor", "strokeLinecap": "round", "strokeLinejoin": "round", }; return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }), React.createElement("rect", { width: 20, height: 20, x: 2, y: 2, rx: 5, ry: 5, key: "k0" }), React.createElement("path", { d: "M16 11.37A4 4 0 1112.63 8 4 4 0 0116 11.37z", key: "k1" }), React.createElement("line", { x1: 17.5, x2: 17.51, y1: 6.5, y2: 6.5, key: "k2" }))); }); Instagram.displayName = 'Instagram'; export var InstagramDimensions = { height: 24, width: 24 };