@zohodesk/svg
Version:
This Bundle Contains EmptyState Images.
20 lines • 633 B
JavaScript
import React from 'react';
import { EmptyStateProps } from "../props/propTypes";
import { EmptyStateDefaultProps } from "../props/defaultProps";
import SVG from "../../SVG/SVG";
import image from "../../../../images/FailureLog.svg";
export default function FailureLog(props) {
return /*#__PURE__*/React.createElement(SVG, {
viewBox: "0 0 189.4 139.3",
name: "failurelog",
...props
}, /*#__PURE__*/React.createElement("image", {
xlinkHref: image,
height: "100%",
width: "100%"
}));
}
FailureLog.propTypes = EmptyStateProps;
FailureLog.defaultProps = { ...EmptyStateDefaultProps,
dataId: 'failureLog'
};