@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
25 lines • 1.03 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var TableFreezeColumn = /*#__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 24 24"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M16 21h1.75c1.8 0 3.25-1.46 3.25-3.25V16h-5v5zM16 14.5h5v-5h-5v5zM14.5 9.5v5h-5v-5h5z"
}), /*#__PURE__*/React.createElement("path", {
d: "M14.5 8h-5V4.5H6.25c-.97 0-1.75.78-1.75 1.75v11.5c0 .97.78 1.75 1.75 1.75H9.5V16h5v5H6.25A3.25 3.25 0 0 1 3 17.75V6.25C3 4.45 4.46 3 6.25 3h8.25v5zM16 8h5V6.25C21 4.45 19.54 3 17.75 3H16v5z"
}));
});
TableFreezeColumn.displayName = 'TableFreezeColumn';
export var TableFreezeColumnDimensions = {
height: 24,
width: 24
};