diff --git a/src/components/Questionnaire/QuestionLabel.tsx b/src/components/Questionnaire/QuestionLabel.tsx deleted file mode 100644 index b610385910d..00000000000 --- a/src/components/Questionnaire/QuestionLabel.tsx +++ /dev/null @@ -1,57 +0,0 @@ -import { cn } from "@/lib/utils"; - -import { Label } from "@/components/ui/label"; - -import type { Question } from "@/types/questionnaire/question"; - -interface QuestionLabelProps { - question: Question; - className?: string; - groupLabel?: boolean; - isSubQuestion?: boolean; -} - -const defaultGroupClass = "text-lg font-medium text-gray-900"; -const defaultInputClass = "text-base font-medium block"; - -export function QuestionLabel({ - question, - className, - groupLabel, - isSubQuestion = false, -}: QuestionLabelProps) { - const defaultClass = groupLabel ? defaultGroupClass : defaultInputClass; - - return ( -