import React from 'react'; import PropTypes from 'prop-types'; import { Card, CardBody } from 'reactstrap'; import Background from '../common/Background'; import corner1 from '../../assets/img/illustrations/corner-1.png'; import ButtonIcon from '../common/ButtonIcon'; import { Link } from 'react-router-dom'; const SpaceWarning = ({ className }) => (
Running out of your space?

Your storage will be running out soon. Get more
space and powerful productivity features.

Upgrade storage
); SpaceWarning.propTypes = { className: PropTypes.string }; export default SpaceWarning;