UNPKG

@zohodesk/svg

Version:

This Bundle Contains EmptyState Images.

20 lines 670 B
import React from 'react'; import { EmptyStateProps } from "../props/propTypes"; import { EmptyStateDefaultProps } from "../props/defaultProps"; import SVG from "../../SVG/SVG"; import image from "../../../../images/EmptyBusinessHour.svg"; export default function EmptyBusinessHour(props) { return /*#__PURE__*/React.createElement(SVG, { viewBox: "0 0 181.9 139.3", name: "businesshour", ...props }, /*#__PURE__*/React.createElement("image", { xlinkHref: image, height: "100%", width: "100%" })); } EmptyBusinessHour.propTypes = EmptyStateProps; EmptyBusinessHour.defaultProps = { ...EmptyStateDefaultProps, dataId: 'emptyBusinessHour' };