PluginProbe
Extendify / 3.2.0
Extendify v3.2.0
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 / Agent / components / redirects / RedirectFontsVariations.jsx

RedirectFontsVariations.jsx in Extendify 3.2.0, at src/Agent/components/redirects/RedirectFontsVariations.jsx

18 lines 566 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { __ } from '@wordpress/i18n';
2
3 export const RedirectFontsVariations = (message) => {
4 return (
5 <div className="mb-4 ms-12 me-2 flex flex-col rounded-lg border border-gray-300 bg-gray-50">
6 <div className="rounded-lg border-b border-gray-300 bg-white p-3">
7 <p className="m-0 p-0 text-sm text-gray-900">{message}</p>
8 </div>
9 <div className="m-0 p-3 text-sm text-gray-900">
10 {__('Suggestion:', 'extendify-local')}{' '}
11 <a href={`${window.extSharedData.homeUrl}`}>
12 {__('Home page', 'extendify-local')}
13 </a>
14 </div>
15 </div>
16 );
17 };
18