import * as React from "react"; import { AnimatedLoadingRingSvg } from "../Svg"; interface LoadingPlaceholderProps { label?: React.ReactNode; } const LoadingPlaceholder: React.FunctionComponent = ({ label = "Loading", }) => (
{label}
); export default React.memo(LoadingPlaceholder);