# speechkit/7.0.0/src/editor/components/icon/index.js

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

- Page: https://pluginprobe.com/plugins/speechkit/7.0.0/code/src/editor/components/icon/index.js
- Raw: https://pluginprobe.com/plugins/speechkit/7.0.0/raw/src/editor/components/icon/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/icon/index.js#L10-L20`.

```javascript
/**
 * WordPress dependencies
 */
import { __ } from '@wordpress/i18n';

/**
 * Internal dependencies
 */
// Same file backs the sidebar header's CSS mask, so the mark has one source.
import { ReactComponent as BeyondwordsIcon } from './beyondwords.svg';

export { BeyondwordsIcon };

/**
 * The brand mark followed by the "BeyondWords" label, for a consistent panel title.
 *
 * @return {Element} The title element.
 */
export function BeyondwordsTitle() {
	return (
		<span
			style={ {
				display: 'inline-flex',
				alignItems: 'center',
				gap: '8px',
			} }
		>
			<BeyondwordsIcon />
			{ __( 'BeyondWords', 'speechkit' ) }
		</span>
	);
}

export default BeyondwordsIcon;

```
