import PropTypes from 'prop-types' import * as React from 'react' import { Column, Text } from '../../atoms' export const EmptyData = ({ height = 590, width = 489, ...props }) => { return (
No hay datos
) } EmptyData.propTypes = { height: PropTypes.number, width: PropTypes.number }