UNPKG

@zohodesk/svg

Version:

This Bundle Contains EmptyState Images.

27 lines (26 loc) 816 B
import React from 'react'; import { EmptyStateProps } from "./../props/propTypes"; import { EmptyStateDefaultProps } from "./../props/defaultProps"; import SVG from "./../../SVG/SVG"; import image from "./../../../images/EmptyRecycleBin.svg"; export default class EmptyRecycleBin extends React.Component { render() { return /*#__PURE__*/React.createElement(SVG, { viewBox: "0 0 181.9 149.5", name: "recycleBin", ...this.props }, /*#__PURE__*/React.createElement("image", { xlinkHref: image, height: "100%", width: "100%" })); } } EmptyRecycleBin.propTypes = EmptyStateProps; EmptyRecycleBin.defaultProps = { ...EmptyStateDefaultProps, dataId: 'emptyRecycleBin' }; // if (__DOCS__) { // EmptyRecycleBin.docs = { // componentGroup: 'Emptystate' // }; // }