"use client"; // components/QuestionCard.jsx — one question rendered as a row in the editor // document: a left rail (drag grip + number), the prompt/options in the center, // and the answer key in the right margin, styled in red pen. import { useState } from "react"; import { IconGripVertical, IconArrowUp, IconArrowDown, IconRefresh, IconX, IconCircleCheck, IconAlertTriangle, IconArrowRight, } from "@tabler/icons-react"; import { questionTypeLabel } from "@/lib/schema"; const LETTERS = "ABCDEFGHIJ"; function AutoTextarea({ value, onChange, rows = 2, ...rest }) { return