mirror of
https://github.com/vercel/commerce.git
synced 2025-05-19 07:56:59 +00:00
16 lines
333 B
JavaScript
16 lines
333 B
JavaScript
import { CgSpinner } from "react-icons/cg";
|
|
|
|
const Widget = ({ message }) => {
|
|
return (
|
|
<section
|
|
id="loading-widget"
|
|
className="flex flex-col items-center justify-center h-screen"
|
|
>
|
|
<CgSpinner className="animate-spin text-2xl mb-2" />
|
|
<p>{message}</p>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default Widget;
|