import { __ } from '@wordpress/i18n'; type PreviewCodeSamplesProps = { injectedCss: string; htmlSample: string; injectedCssId: string; htmlSampleId: string; rows?: number; injectedCssLabel?: string; htmlSampleLabel?: string; }; const PreviewCodeSamples = ( { injectedCss, htmlSample, injectedCssId, htmlSampleId, rows = 12, injectedCssLabel = __( 'Injected CSS', 'airygen-seo' ), htmlSampleLabel = __( 'HTML Sample', 'airygen-seo' ), }: PreviewCodeSamplesProps ) => (
{ __( 'Airygen automatically injects this CSS. You can override it in your global CSS if needed.', 'airygen-seo', ) }
{ __( 'This is the HTML structure used by Airygen. Use it to customize styles with your own CSS.', 'airygen-seo', ) }