@zohodesk/svg
Version:
This Bundle Contains EmptyState Images.
27 lines (26 loc) • 851 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/EmptyBusinessHoliday.svg";
export default class EmptyBusinessHoliday extends React.Component {
render() {
return /*#__PURE__*/React.createElement(SVG, {
viewBox: "0 0 181.9 139.3",
name: "businessholiday",
...this.props
}, /*#__PURE__*/React.createElement("image", {
xlinkHref: image,
height: "100%",
width: "100%"
}));
}
}
EmptyBusinessHoliday.propTypes = EmptyStateProps;
EmptyBusinessHoliday.defaultProps = { ...EmptyStateDefaultProps,
dataId: 'emptyBusinessHoliday'
}; // if (__DOCS__) {
// EmptyBusinessHoliday.docs = {
// componentGroup: 'Emptystate'
// };
// }