import React from 'react'; import propTypes from 'prop-types'; import classNames from 'classnames'; import { Button } from '@edx/paragon'; import { ReactComponent as EmptyIcon } from '../../assets/empty.svg'; function EmptyPage({ title, subTitle = null, action = null, actionText = null, fullWidth = false, }) { const containerClasses = classNames( 'min-content-height justify-content-center align-items-center d-flex w-100 flex-column pt-5', { 'bg-light-400': !fullWidth }, ); return (
{subTitle}
} {action && actionText && ( )}