UNPKG

@heroicons/react

Version:
27 lines (25 loc) 1.03 kB
const React = require("react"); function DeviceTabletIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M10.5 18a.75.75 0 000 1.5h3a.75.75 0 000-1.5h-3z" }), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", 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", clipRule: "evenodd" })); } const ForwardRef = React.forwardRef(DeviceTabletIcon); module.exports = ForwardRef;