metadata-based-explorer1
Version:
Box UI Elements
28 lines (26 loc) • 1.01 kB
JavaScript
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
var IconShield2 = function IconShield2(_ref) {
var _ref$className = _ref.className,
className = _ref$className === void 0 ? '' : _ref$className,
_ref$color = _ref.color,
color = _ref$color === void 0 ? '#8EA6B2' : _ref$color,
_ref$height = _ref.height,
height = _ref$height === void 0 ? 12 : _ref$height,
title = _ref.title,
_ref$width = _ref.width,
width = _ref$width === void 0 ? 12 : _ref$width;
return React.createElement(AccessibleSVG, {
className: "icon-shield-2 ".concat(className),
height: height,
title: title,
viewBox: "0 0 12 12",
width: width
}, React.createElement("path", {
className: "fill-color",
d: "M6 1L2 2.818v2.727C2 8.068 3.707 10.427 6 11c2.293-.573 4-2.932 4-5.455V2.818L6 1zm0 4.995h3.111C8.876 7.868 7.653 9.536 6 10.06V6H2.889V3.41L6 1.994v4z",
fill: color,
fillRule: "nonzero"
}));
};
export default IconShield2;