@zohodesk/svg
Version:
This Bundle Contains EmptyState Images.
27 lines (26 loc) • 829 B
JavaScript
import React from 'react';
import { EmptyStateProps } from "./../props/propTypes";
import { EmptyStateDefaultProps } from "./../props/defaultProps";
import SVG from "./../../SVG/SVG";
import image from "./../../../images/EmptyCustomDomain.svg";
export default class EmptyCustomDomain extends React.Component {
render() {
return /*#__PURE__*/React.createElement(SVG, {
viewBox: "0 0 298 123.46",
name: "CustomDomain",
...this.props
}, /*#__PURE__*/React.createElement("image", {
xlinkHref: image,
height: "100%",
width: "100%"
}));
}
}
EmptyCustomDomain.propTypes = EmptyStateProps;
EmptyCustomDomain.defaultProps = { ...EmptyStateDefaultProps,
dataId: 'emptyCustomDomain'
}; // if (__DOCS__) {
// EmptyCustomDomain.docs = {
// componentGroup: 'Emptystate'
// };
// }