@scaleflex/icons
Version:
SVG icons as React components
25 lines • 1.16 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size"];
import React from 'react';
import { intrinsicComponent } from './utils/functions';
export var MockInvalidation = intrinsicComponent(function (_ref, 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,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "MockInvalidation",
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: "M25 0.000549316C38.8075 0.000549316 50 11.1931 50 25.0005C50 38.808 38.8075 50.0005 25 50.0005C11.1925 50.0005 0 38.808 0 25.0005C0 11.1931 11.1925 0.000549316 25 0.000549316ZM35 27.5005H15V32.5005H35V27.5005ZM35 17.5005H15V22.5005H35V17.5005Z",
fill: color
}));
});
export default MockInvalidation;