# speechkit/7.0.0/src/editor/components/settings-panel/index.js

BeyondWords – AI audio for publishers, version 7.0.0. 28 lines.

- Page: https://pluginprobe.com/plugins/speechkit/7.0.0/code/src/editor/components/settings-panel/index.js
- Raw: https://pluginprobe.com/plugins/speechkit/7.0.0/raw/src/editor/components/settings-panel/index.js
- Modified: 2026-08-12T09:46:22+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/speechkit/7.0.0/code/src/editor/components/settings-panel/index.js#L10-L20`.

```javascript
/**
 * WordPress dependencies
 */
import { Fragment } from '@wordpress/element';

/**
 * Internal dependencies
 */
import ContentSection from './content-section';
import FormatSection from './format-section';
import VoiceSection from './voice-section';
import PlayerSection from './player-section';

export { ContentSection, FormatSection, VoiceSection, PlayerSection };

export function SettingsPanel() {
	return (
		<Fragment>
			<ContentSection />
			<FormatSection />
			<VoiceSection />
			<PlayerSection />
		</Fragment>
	);
}

export default SettingsPanel;

```
