UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

18 lines 557 B
/** * PublishState module. * @module @massds/mayflower-react/PublishState * @requires module:@massds/mayflower-assets/scss/01-atoms/publish-state */ import React from "react"; import PropTypes from "prop-types"; const PublishState = publishState => /*#__PURE__*/React.createElement("div", { className: "ma__publish-state" }, publishState.text); PublishState.propTypes = process.env.NODE_ENV !== "production" ? { /** The text displayed. */ text: PropTypes.string } : {}; PublishState.defaultProps = { text: 'Draft' }; export default PublishState;