@react95/core
Version:
Windows 95 styleguide
23 lines (22 loc) • 557 B
JavaScript
const React = require("react");
const Fullscreen = (props) => /* @__PURE__ */ React.createElement(
"svg",
{
xmlns: "http://www.w3.org/2000/svg",
width: "6",
viewBox: "0 0 24 24",
height: "6",
"aria-label": "fullscreen",
...props
},
/* @__PURE__ */ React.createElement(
"path",
{
d: "M24 9h-2v-5h-7v-2h9v7zm-9 13v-2h7v-5h2v7h-9zm-15-7h2v5h7v2h-9v-7zm9-13v2h-7v5h-2v-7h9zm11 4h-16v12h16v-12z",
style: { width: 1e3 }
}
)
);
const Fullscreen$1 = Fullscreen;
module.exports = Fullscreen$1;
;