/** * External dependencies */ import { __ } from '@wordpress/i18n'; /** * Internal dependencies */ import { ImageLoader } from './image-loader.tsx'; import './first-load-screen.scss'; import type { FC } from 'react'; export const FirstLoadScreen: FC< { state?: 'loadingFeature' | 'analyzing' | 'generating'; } > = ( { state = 'loadingFeature' } ) => { const loadingLabel = __( 'Loading…', 'jetpack-ai-client' ); const analyzingLabel = __( 'Analyzing your site to create the perfect logo…', 'jetpack-ai-client' ); const generatingLabel = __( 'Generating logo…', 'jetpack-ai-client' ); return (