UNPKG

styled-icons

Version:

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

14 lines (13 loc) 840 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Contact = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }), React.createElement("path", { d: "M21 2H6a2 2 0 00-2 2v3H2v2h2v2H2v2h2v2H2v2h2v3a2 2 0 002 2h15a1 1 0 001-1V3a1 1 0 00-1-1zm-8 2.999c1.648 0 3 1.351 3 3A3.012 3.012 0 0113 11c-1.647 0-3-1.353-3-3.001 0-1.649 1.353-3 3-3zM19 18H7v-.75c0-2.219 2.705-4.5 6-4.5s6 2.281 6 4.5V18z", key: "k0" }))); }); Contact.displayName = 'Contact'; export var ContactDimensions = { height: 24, width: 24 };