import { Rocket, Edit2, Layout, Volume2, Settings, Maximize2, } from "lucide-react"; import { Button } from "../../../../components/ui/button"; interface ReviewPublishStepProps { formData: any; prevStep: () => void; setIsPublished: (val: boolean) => void; } export function ReviewPublishStep({ formData, prevStep, setIsPublished, }: ReviewPublishStepProps) { return (
{/* 1. Video Preview Card */}

Video Preview

PROCESSED
{/* Mock Player Control Overlays */}
{/* Bottom Controls — Matching Image 1884 */}
{/* Row 1: Seeker and Timestamps */}
0:00
12:30
{/* Row 2: Icons */}
CC
{/* 2. Content Details Card */}

Content Details

{/* Metadata Grid */}
TITLE

{formData.title || "Introduction to Past Tense"}

ASSIGNED MODULE

Grammar Basics - Level 1

TEACHER NAME

Abebe Kebede

FILE SIZE
245 MB (1080p MP4)
{/* Description Section */}
DESCRIPTION
{/* Gradient Divider */}
); }