import { Button } from '@wordpress/components'; import { __ } from '@wordpress/i18n'; import { CSS_STATE_CONTENT, CSS_HEADING, CSS_SUBTEXT, CSS_METADATA_CARD, CSS_PRIMARY_BUTTON, CSS_TEXT_LINK, } from '../../shared/constants'; export const ResubmitConfirmView = ({ onResubmit, onCancel, }: ResubmitConfirmViewProps) => { return (

{__('Legal Risk Review', 'cleardraft')}

{__( 'Submit your content for legal analysis. We will check for potential defamation, privacy violations, and other legal issues.', 'cleardraft', )}

{__( 'This content has been previously analyzed. Would you like to resubmit?', 'cleardraft', )}
); }; interface ResubmitConfirmViewProps { onResubmit: () => void; onCancel: () => void; }