UNPKG

@zohodesk/svg

Version:

This Bundle Contains EmptyState Images.

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