UNPKG

@zohodesk/svg

Version:

This Bundle Contains EmptyState Images.

24 lines 703 B
import React from 'react'; import { ErrorStateProps } from "../props/propTypes"; import { ErrorStateDefaultProps } from "../props/defaultProps"; import SVG from "../../SVG/SVG"; import image from "../../../../images/ReguestUrlNotFound.svg"; export default function UrlNotFound(props) { const { isFluid } = props; return /*#__PURE__*/React.createElement(SVG, { viewBox: "0 0 614.2 310.2", name: "UrlNotFound", ...props, isFluid: isFluid }, /*#__PURE__*/React.createElement("image", { xlinkHref: image, height: "100%", width: "100%" })); } UrlNotFound.propTypes = ErrorStateProps; UrlNotFound.defaultProps = { ...ErrorStateDefaultProps, dataId: 'urlNotFound' };