UNPKG

@zohodesk/svg

Version:

This Bundle Contains EmptyState Images.

31 lines (30 loc) 882 B
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 class NoRequestFound extends React.Component { render() { let { isFluid } = this.props; return /*#__PURE__*/React.createElement(SVG, { viewBox: "0 0 476.5 297.6", name: "NoRequestFound", isFluid: isFluid, ...this.props }, /*#__PURE__*/React.createElement("image", { xlinkHref: image, height: "100%", width: "100%" })); } } NoRequestFound.propTypes = ErrorStateProps; NoRequestFound.defaultProps = { ...ErrorStateDefaultProps, dataId: 'noRequestFound' }; // if (__DOCS__) { // NoRequestFound.docs = { // componentGroup: 'Emptystate' // }; // }