mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-01-05 20:12:02 -05:00
31 lines
922 B
React
31 lines
922 B
React
|
const PropTypes = require('prop-types');
|
||
|
const React = require('react');
|
||
|
const FlexRow = require('../../components/flex-row/flex-row.jsx');
|
||
|
const Button = require('../../components/forms/button.jsx');
|
||
|
|
||
|
require('./share-banner.scss');
|
||
|
|
||
|
const ShareBanner = props => {
|
||
|
if (props.shared) return null;
|
||
|
return (
|
||
|
<div className="shareBanner">
|
||
|
<div className="inner">
|
||
|
<FlexRow className="preview-row">
|
||
|
<span className="share-text">
|
||
|
This project is not shared — so only you can see it. Click share to let everyone see it!
|
||
|
</span>
|
||
|
<Button className="button share-button">
|
||
|
Share
|
||
|
</Button>
|
||
|
</FlexRow>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
ShareBanner.propTypes = {
|
||
|
shared: PropTypes.bool.isRequired
|
||
|
};
|
||
|
|
||
|
module.exports = ShareBanner;
|