import { getGlobalStyle } from '../../../helpers' import { Column, Divider, Text } from '../../atoms' interface EmptyDataProps extends React.SVGProps { height?: number width?: number } export const EmptyData: React.FC = ({ height = 590, width = 489, ...props }) => { return (
No hay datos disponibles
) }