mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-24 11:51:52 +02:00
27 lines
No EOL
988 B
JavaScript
27 lines
No EOL
988 B
JavaScript
const React = require("react");
|
|
|
|
function DevicePhoneMobileIcon({
|
|
title,
|
|
titleId,
|
|
...props
|
|
}, svgRef) {
|
|
return /*#__PURE__*/React.createElement("svg", Object.assign({
|
|
xmlns: "http://www.w3.org/2000/svg",
|
|
viewBox: "0 0 20 20",
|
|
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: "M8 16.25a.75.75 0 01.75-.75h2.5a.75.75 0 010 1.5h-2.5a.75.75 0 01-.75-.75z"
|
|
}), /*#__PURE__*/React.createElement("path", {
|
|
fillRule: "evenodd",
|
|
d: "M4 4a3 3 0 013-3h6a3 3 0 013 3v12a3 3 0 01-3 3H7a3 3 0 01-3-3V4zm4-1.5v.75c0 .414.336.75.75.75h2.5a.75.75 0 00.75-.75V2.5h1A1.5 1.5 0 0114.5 4v12a1.5 1.5 0 01-1.5 1.5H7A1.5 1.5 0 015.5 16V4A1.5 1.5 0 017 2.5h1z",
|
|
clipRule: "evenodd"
|
|
}));
|
|
}
|
|
|
|
const ForwardRef = React.forwardRef(DevicePhoneMobileIcon);
|
|
module.exports = ForwardRef; |