import { BookUser, EllipsisVertical, FileUp, ListTodo, Save } from 'lucide-react' import React from 'react' type AssignmentBoxProps = { type: 'quiz' | 'file' view?: 'teacher' | 'student' saveFC?: () => void children: React.ReactNode } function AssignmentBoxUI({ type, view, saveFC, children }: AssignmentBoxProps) { return (
Quiz
File Submission
Teacher view
Save