UNPKG

styled-icons

Version:

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

14 lines (13 loc) 914 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var DeviceTablet = 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: "M17 4H8c-.55 0-1 .45-1 1v12c0 .55.45 1 1 1h3.5a1 1 0 102 0H17c.55 0 1-.45 1-1V5c0-.55-.45-1-1-1zm0 13H8V5h9v12zm1-16H7C5.346 1 4 2.346 4 4v15c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3V4c0-1.654-1.346-3-3-3zm1 18c0 .551-.449 1-1 1H7c-.551 0-1-.449-1-1V4c0-.551.449-1 1-1h11c.551 0 1 .449 1 1v15z", key: "k0" }))); }); DeviceTablet.displayName = 'DeviceTablet'; export var DeviceTabletDimensions = { height: 24, width: 24 };