@zohodesk/svg
Version:
This Bundle Contains EmptyState Images.
31 lines (30 loc) • 880 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/WillBack.svg";
export default class WillBeRightBack extends React.Component {
render() {
let {
isFluid
} = this.props;
return /*#__PURE__*/React.createElement(SVG, {
viewBox: "0 0 889 490.6",
name: "WillBeRightBack",
...this.props,
isFluid: isFluid
}, /*#__PURE__*/React.createElement("image", {
xlinkHref: image,
height: "100%",
width: "100%"
}));
}
}
WillBeRightBack.propTypes = ErrorStateProps;
WillBeRightBack.defaultProps = { ...ErrorStateDefaultProps,
dataId: 'willBeRightBack'
}; // if (__DOCS__) {
// WillBeRightBack.docs = {
// componentGroup: 'Emptystate'
// };
// }