@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 849 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const Tablet2Icon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M8 2.25A4.75 4.75 0 0 0 3.25 7v7.25h17.5V7A4.75 4.75 0 0 0 16 2.25zm12.75 13.5H3.25V17A4.75 4.75 0 0 0 8 21.75h8A4.75 4.75 0 0 0 20.75 17zM10.25 18a1.75 1.75 0 1 1 3.5 0 1.75 1.75 0 0 1-3.5 0M11 5.25a.75.75 0 0 0 0 1.5h2a.75.75 0 0 0 0-1.5z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(Tablet2Icon);
export default ForwardRef;