# extendify/3.2.1/src/Launch/components/NavigationButton.jsx

Extendify, version 3.2.1. 20 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.2.1/code/src/Launch/components/NavigationButton.jsx
- Raw: https://pluginprobe.com/plugins/extendify/3.2.1/raw/src/Launch/components/NavigationButton.jsx
- Modified: 2026-02-18T22:27:14+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/Launch/components/NavigationButton.jsx#L10-L20`.

```jsx
import classnames from 'classnames';

export const NavigationButton = (props) => {
	return (
		<button
			{...props}
			className={classnames(
				'button-focus flex items-center rounded-sm border px-6 py-3 leading-6',
				{
					'opacity-50': props.disabled,
				},
				props.className,
			)}
			type="button"
		>
			{props.children}
		</button>
	);
};

```
