# extendify/3.2.1/src/AutoLaunch/components/Logo.jsx

Extendify, version 3.2.1. 26 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.2.1/code/src/AutoLaunch/components/Logo.jsx
- Raw: https://pluginprobe.com/plugins/extendify/3.2.1/raw/src/AutoLaunch/components/Logo.jsx
- Modified: 2026-09-09T18:23:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/3.2.1/code/src/AutoLaunch/components/Logo.jsx#L10-L20`.

```jsx
import { extendify } from '@auto-launch/icons';
import { Icon } from '@wordpress/icons';

export const Logo = ({ src, name }) => {
	if (src) {
		return (
			<div className="flex h-ui-logo max-w-52 items-center overflow-hidden rounded-ui-logo md:max-w-72">
				<img
					className="h-full w-auto max-w-full rounded-ui-logo object-contain"
					src={src}
					alt={name ?? ''}
				/>
			</div>
		);
	}

	// Drawn in currentColor, so it stays legible on any page color a partner picks.
	return (
		<Icon
			width={undefined}
			icon={extendify}
			className="h-ui-mark w-auto text-ui-page-text"
		/>
	);
};

```
