UNPKG

styled-icons

Version:

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

14 lines (13 loc) 1.41 kB
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var PhoneOutline = 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: "M19.502 3.672l-1.795-1.793C17.141 1.312 16.387 1 15.586 1s-1.555.312-2.121.879l-1.586 1.586a3.002 3.002 0 000 4.242l1.379 1.379-4.172 4.172-1.379-1.379C7.141 11.312 6.387 11 5.586 11s-1.555.312-2.121.879l-1.586 1.586a3.002 3.002 0 000 4.242L3.673 19.5c.465.465 1.796 1.545 4.116 1.545 2.764 0 5.694-1.529 8.711-4.545 6.245-6.246 4.825-11.002 3.002-12.828zm-6.209 1.207l1.586-1.586a.997.997 0 011.414 0l1.083 1.082-3.001 3-1.082-1.082a.999.999 0 010-1.414zm-10 11.414a.999.999 0 010-1.414l1.586-1.586a.997.997 0 011.414 0l1.082 1.082-2.999 3-1.083-1.082zm11.793-1.207c-3.083 3.082-5.551 3.959-7.297 3.959-1.349 0-2.267-.523-2.702-.959-.004-.004 2.995-3.004 2.995-3.004l.297.297a.997.997 0 001.414 0l5.586-5.586a.999.999 0 000-1.414l-.297-.297 3.001-3c1.003 1.004 2.467 4.539-2.997 10.004z", key: "k0" }))); }); PhoneOutline.displayName = 'PhoneOutline'; export var PhoneOutlineDimensions = { height: 24, width: 24 };