@scaleflex/icons
Version:
SVG icons as React components
25 lines • 1.81 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size", "ref"];
import React from 'react';
export var Security = function Security(_ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 14 : _ref$size,
ref = _ref.ref,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "Security",
ref: ref,
width: size,
height: size,
viewBox: "0 0 50 50",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M47.0357 6.99779C46.9459 6.35312 46.4821 5.82284 45.8551 5.64854L25.7591 0.0598348C25.4726 -0.0199043 25.17 -0.0199043 24.8833 0.0598348L4.78728 5.64854C4.16026 5.82284 3.69642 6.3529 3.60666 6.99779C3.4901 7.83592 0.831044 27.6391 7.65135 37.4906C14.4636 47.3303 24.5131 49.8519 24.9375 49.9545C25.0637 49.985 25.1922 50 25.3212 50C25.4502 50 25.5787 49.9848 25.7048 49.9545C26.1295 49.8519 36.179 47.3303 42.991 37.4906C49.8113 27.6393 47.1523 7.83614 47.0357 6.99779ZM38.2805 18.5591L24.573 32.2666C24.2541 32.5855 23.8358 32.7452 23.4177 32.7452C22.9996 32.7452 22.5813 32.5858 22.2623 32.2666L13.7871 23.7914C13.4806 23.485 13.3085 23.0694 13.3085 22.636C13.3085 22.2027 13.4808 21.787 13.7871 21.4807L15.4699 19.7979C16.1081 19.16 17.1427 19.1597 17.7806 19.7979L23.4177 25.4349L34.287 14.5654C34.5934 14.2588 35.009 14.0867 35.4424 14.0867C35.8757 14.0867 36.2914 14.2588 36.5977 14.5654L38.2805 16.2482C38.9187 16.8863 38.9187 17.921 38.2805 18.5591Z",
fill: color
}));
};
export default Security;