styled-icons
Version:
Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components
17 lines (16 loc) • 1.25 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var React = tslib_1.__importStar(require("react"));
var StyledIconBase_1 = require("../../StyledIconBase");
exports.PhoneIncoming = React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg",
};
return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }),
React.createElement("path", { d: "M15.793 6.793L13 4v7h7l-2.793-2.793 4.5-4.5-1.414-1.414z", key: "k0" }),
React.createElement("path", { d: "M16.422 13.443a1.001 1.001 0 00-1.391.043l-2.392 2.461c-.576-.11-1.734-.471-2.926-1.66-1.192-1.193-1.553-2.354-1.66-2.926l2.459-2.394a1 1 0 00.043-1.391L6.86 3.513a1 1 0 00-1.391-.087l-2.17 1.861a1.001 1.001 0 00-.291.649c-.015.25-.301 6.172 4.291 10.766C11.305 20.707 16.324 21 17.705 21c.203 0 .326-.006.359-.008a.99.99 0 00.648-.291l1.861-2.171a1.001 1.001 0 00-.086-1.391l-4.065-3.696z", key: "k1" })));
});
exports.PhoneIncoming.displayName = 'PhoneIncoming';
exports.PhoneIncomingDimensions = { height: 24, width: 24 };
;