@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 993 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var TableSimpleCheckmark = /*#__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: "M12 6h10.75v16.75H6V12a6 6 0 0 1 6-6ZM6 25.25h16.75V42H12a6 6 0 0 1-6-6V25.25Zm19.25 0V42H36a6 6 0 0 0 6-6V25.25H25.25Zm0-19.25v16.75H42V12a6 6 0 0 0-6-6H25.25Zm13.13 25.63-5.5 5.5c-.49.5-1.28.5-1.77 0l-2.74-2.74a1.25 1.25 0 0 1 1.76-1.77L32 34.48l4.61-4.61a1.25 1.25 0 0 1 1.77 1.76Z"
}));
});
TableSimpleCheckmark.displayName = 'TableSimpleCheckmark';
export var TableSimpleCheckmarkDimensions = {
height: 48,
width: 48
};