PluginProbe
BeyondWords – AI audio for publishers / 7.0.0
BeyondWords – AI audio for publishers v7.0.0
7.1.0 trunk 4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.6 4.1.0 4.1.1 4.1.2 4.2.0 4.2.1 4.2.2 4.2.3 4.2.4 4.3.0 4.4.0 4.5.0 4.5.1 4.6.0 4.6.1 4.6.2 4.7.0 All 43 releases
speechkit / src / editor / components / icon / index.js

index.js in BeyondWords – AI audio for publishers 7.0.0, at src/editor/components/icon/index.js

35 lines 682 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * WordPress dependencies
3 */
4 import { __ } from '@wordpress/i18n';
5
6 /**
7 * Internal dependencies
8 */
9 // Same file backs the sidebar header's CSS mask, so the mark has one source.
10 import { ReactComponent as BeyondwordsIcon } from './beyondwords.svg';
11
12 export { BeyondwordsIcon };
13
14 /**
15 * The brand mark followed by the "BeyondWords" label, for a consistent panel title.
16 *
17 * @return {Element} The title element.
18 */
19 export function BeyondwordsTitle() {
20 return (
21 <span
22 style={ {
23 display: 'inline-flex',
24 alignItems: 'center',
25 gap: '8px',
26 } }
27 >
28 <BeyondwordsIcon />
29 { __( 'BeyondWords', 'speechkit' ) }
30 </span>
31 );
32 }
33
34 export default BeyondwordsIcon;
35