import { Skeleton } from "@mui/material"; function TextLoading({ loading, width, height, children }) { return loading ? ( ) : ( children ); } export default TextLoading;