@zohodesk/svg
Version:
This Bundle Contains EmptyState Images.
24 lines • 714 B
JavaScript
import React from 'react';
import { ErrorStateProps } from "../props/propTypes";
import { ErrorStateDefaultProps } from "../props/defaultProps";
import SVG from "../../SVG/SVG";
import image from "../../../../images/NoRequestFound.svg";
export default function NoRequestFound(props) {
const {
isFluid
} = props;
return /*#__PURE__*/React.createElement(SVG, {
viewBox: "0 0 476.5 297.6",
name: "NoRequestFound",
isFluid: isFluid,
...props
}, /*#__PURE__*/React.createElement("image", {
xlinkHref: image,
height: "100%",
width: "100%"
}));
}
NoRequestFound.propTypes = ErrorStateProps;
NoRequestFound.defaultProps = { ...ErrorStateDefaultProps,
dataId: 'noRequestFound'
};