Rev 4394 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
/* eslint-disable react/prop-types */
import React from 'react'
const EmptySection = ({
Icon = null,
message = 'No hay publicaciones',
align = 'center'
}) => {
const alignOptions = {
left: 'flex-start',
right: 'flex-end',
center: 'center'
}
return (
<div className='empty__section' style={{ alignItems: alignOptions[align] }}>
{Icon && Icon}
<p>{message}</p>
</div>
)
}
export default EmptySection