@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 952 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var TetrisApp = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 48 48"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M16 6c0-1.1.9-2 2-2h8v10H16V6zM6 16a2 2 0 0 0-2 2v6c0 1.1.9 2 2 2h8V16H6zm20 0H16v10h8a2 2 0 0 0 2-2v-8zM36 4h-8v10h8a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zM10 35c0-1.1.9-2 2-2h8v10h-8a2 2 0 0 1-2-2v-6zm22-2H22v10h10V33zm2 0h10v8a2 2 0 0 1-2 2h-8V33zm2-12a2 2 0 0 0-2 2v8h10v-8a2 2 0 0 0-2-2h-6z"
}));
});
TetrisApp.displayName = 'TetrisApp';
export var TetrisAppDimensions = {
height: 48,
width: 48
};