PluginProbe
Extendify / 3.1.3
Extendify v3.1.3
3.2.1 3.2.0 3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 All 127 releases
extendify / src / Shared / components / ProductAccountActivation / Loading.jsx

Loading.jsx in Extendify 3.1.3, at src/Shared/components/ProductAccountActivation/Loading.jsx

23 lines 795 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { Description, DialogTitle } from '@headlessui/react';
2 import { Spinner } from '@wordpress/components';
3 import { __ } from '@wordpress/i18n';
4
5 export const Loading = () => {
6 return (
7 <div className="py-10 px-16 flex flex-col items-center justify-center">
8 <div className="mb-6">
9 <Spinner className="h-10 w-10 text-[#1A5130]" />
10 </div>
11 <DialogTitle className="text-xl font-semibold text-center text-gray-900 mb-3 font-sans">
12 {__('Setting up plugins for you...', 'extendify-local')}
13 </DialogTitle>
14 <Description className="text-center text-gray-700 text-base">
15 {__(
16 'Please wait while we install your plugins and create accounts with the selected providers. This should only take a moment.',
17 'extendify-local',
18 )}
19 </Description>
20 </div>
21 );
22 };
23