metadata-based-explorer1
Version:
Box UI Elements
28 lines (26 loc) • 1.25 kB
JavaScript
import * as React from 'react';
import { bdlNeutral03 } from '../../styles/variables';
import AccessibleSVG from '../accessible-svg';
var IconGridViewInverted = function IconGridViewInverted(_ref) {
var _ref$className = _ref.className,
className = _ref$className === void 0 ? '' : _ref$className,
_ref$color = _ref.color,
color = _ref$color === void 0 ? bdlNeutral03 : _ref$color,
_ref$height = _ref.height,
height = _ref$height === void 0 ? 16 : _ref$height,
title = _ref.title,
_ref$width = _ref.width,
width = _ref$width === void 0 ? 16 : _ref$width;
return React.createElement(AccessibleSVG, {
className: "icon-grid-view-inverted ".concat(className),
title: title,
width: width,
height: height,
viewBox: "0 0 16 16"
}, React.createElement("path", {
d: "M2.5 2h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5zm7 0h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5zm-7 7h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5zm7 0h4a.5.5 0 0 1 .5.5v4a.5.5 0 0 1-.5.5h-4a.5.5 0 0 1-.5-.5v-4a.5.5 0 0 1 .5-.5z",
fill: color,
fillRule: "nonzero"
}));
};
export default IconGridViewInverted;