import React from "react"; export interface Loading { /** * Either pass an image or gif or nothing at all. Passing an empty string will break the component. */ img?: string; /** * Message that its sent: string or number */ children?: React.ReactNode; }