UNPKG

1.03 kBJavaScriptView Raw
1import * as React from "react";
2function DeviceTabletIcon({
3 title,
4 titleId,
5 ...props
6}, svgRef) {
7 return /*#__PURE__*/React.createElement("svg", Object.assign({
8 xmlns: "http://www.w3.org/2000/svg",
9 viewBox: "0 0 24 24",
10 fill: "currentColor",
11 "aria-hidden": "true",
12 ref: svgRef,
13 "aria-labelledby": titleId
14 }, props), title ? /*#__PURE__*/React.createElement("title", {
15 id: titleId
16 }, title) : null, /*#__PURE__*/React.createElement("path", {
17 d: "M10.5 18a.75.75 0 000 1.5h3a.75.75 0 000-1.5h-3z"
18 }), /*#__PURE__*/React.createElement("path", {
19 fillRule: "evenodd",
20 d: "M7.125 1.5A3.375 3.375 0 003.75 4.875v14.25A3.375 3.375 0 007.125 22.5h9.75a3.375 3.375 0 003.375-3.375V4.875A3.375 3.375 0 0016.875 1.5h-9.75zM6 4.875c0-.621.504-1.125 1.125-1.125h9.75c.621 0 1.125.504 1.125 1.125v14.25c0 .621-.504 1.125-1.125 1.125h-9.75A1.125 1.125 0 016 19.125V4.875z",
21 clipRule: "evenodd"
22 }));
23}
24const ForwardRef = React.forwardRef(DeviceTabletIcon);
25export default ForwardRef;
\No newline at end of file