/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ import React from "react"; import thinkingFace from "./assets/thinking.svg"; import eyes from "./assets/eyes.svg"; import "./SpinnerMessage.css"; type Props = { message: string; }; export default class SpinnerMessage extends React.Component { render() { return (
Thinking face Eyes

{this.props.message}

Wait few seconds

); } }