box-ui-elements
Version:
Box UI Elements
22 lines • 693 B
JavaScript
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
const IconShield2 = ({
className = '',
color = '#8EA6B2',
height = 12,
title,
width = 12
}) => /*#__PURE__*/React.createElement(AccessibleSVG, {
className: `icon-shield-2 ${className}`,
height: height,
title: title,
viewBox: "0 0 12 12",
width: width
}, /*#__PURE__*/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;
//# sourceMappingURL=IconShield2.js.map