UNPKG

styled-icons

Version:

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

16 lines (15 loc) 1.03 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); var React = tslib_1.__importStar(require("react")); var StyledIconBase_1 = require("../../StyledIconBase"); exports.DevicePhone = 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 3H8C6.346 3 5 4.346 5 6v12c0 1.654 1.346 3 3 3h7c1.654 0 3-1.346 3-3V6c0-1.654-1.346-3-3-3zm1 15c0 .551-.449 1-1 1H8c-.551 0-1-.449-1-1V6c0-.551.449-1 1-1h7c.551 0 1 .449 1 1v12zM14 6H9c-.55 0-1 .45-1 1v9c0 .55.45 1 1 1h1.5a1 1 0 102 0H14c.55 0 1-.45 1-1V7c0-.55-.45-1-1-1zm0 10H9V7h5v9z", key: "k0" }))); }); exports.DevicePhone.displayName = 'DevicePhone'; exports.DevicePhoneDimensions = { height: 24, width: 24 };