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

Extendify, version 3.2.1. 28 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.2.1/code/src/AutoLaunch/components/Modal.jsx
- Raw: https://pluginprobe.com/plugins/extendify/3.2.1/raw/src/AutoLaunch/components/Modal.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/Modal.jsx#L10-L20`.

```jsx
import classNames from 'classnames';

export const ModalHeading = ({ title }) => (
	<h2 className="m-0 p-0 text-ui-heading font-ui-heading font-ui-strong tracking-ui-heading text-ui-ink">
		{title}
	</h2>
);

export const ModalText = ({ children, strong }) => (
	<p
		className={classNames(
			'm-0 text-ui-body leading-ui text-ui-ink',
			strong && 'font-medium',
		)}
	>
		{children}
	</p>
);

export const ModalLink = ({ label, href }) => (
	<a
		className="text-ui-body font-medium leading-ui underline [color:var(--ext-tpl-modal-link,var(--color-ui-action))]"
		href={href}
	>
		{label}
	</a>
);

```
