@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 870 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var TableSimple = /*#__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: "M6 10.75A4.75 4.75 0 0 1 10.75 6h12v16.75H6v-12Zm0 14.5v12A4.75 4.75 0 0 0 10.75 42h12V25.25H6ZM25.25 42h12A4.75 4.75 0 0 0 42 37.25v-12H25.25V42ZM42 22.75v-12A4.75 4.75 0 0 0 37.25 6h-12v16.75H42Z"
}));
});
TableSimple.displayName = 'TableSimple';
export var TableSimpleDimensions = {
height: 48,
width: 48
};