PluginProbe
Extendify / 3.1.5
Extendify v3.1.5
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 0.7.0 All 126 releases
extendify / src / AutoLaunch / components / Logo.jsx

Logo.jsx in Extendify 3.1.5, at src/AutoLaunch/components/Logo.jsx

24 lines 552 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 import { extendify } from '@auto-launch/icons';
2 import { Icon } from '@wordpress/icons';
3
4 export const Logo = () => {
5 if (window.extSharedData?.partnerLogo) {
6 return (
7 <div className="flex h-10 max-w-52 items-center overflow-hidden md:max-w-72">
8 <img
9 className="h-full w-auto max-w-full object-contain"
10 src={window.extSharedData.partnerLogo}
11 alt={window.extSharedData?.partnerName ?? ''}
12 />
13 </div>
14 );
15 }
16 return (
17 <Icon
18 width={undefined}
19 icon={extendify}
20 className="h-8 w-auto text-banner-text"
21 />
22 );
23 };
24