From 51d53bda580c7b84ca7a2cd346f3d6d7f372d1e9 Mon Sep 17 00:00:00 2001 From: Laurenz Rasche Date: Wed, 6 Sep 2023 11:22:01 +0200 Subject: [PATCH] remove unused imports --- src/components/Fahrradcheck/Question.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/components/Fahrradcheck/Question.tsx b/src/components/Fahrradcheck/Question.tsx index 3ba7f12..cc606dc 100644 --- a/src/components/Fahrradcheck/Question.tsx +++ b/src/components/Fahrradcheck/Question.tsx @@ -1,14 +1,11 @@ import { RadioGroup } from '@headlessui/react'; -import { InformationCircleIcon } from '@heroicons/react/24/outline'; import clsx from 'clsx'; import React, { useState } from 'react'; import { Content } from '../Layout'; import { Section } from '../Layout/Section'; -import { Caption, H3 } from '../Text'; +import { H3 } from '../Text'; import { Question } from './questions.const'; -import { Popover } from '../Layout/Popover'; import { InfoPopover } from '../ExamplePage/InfoPopover'; -import { Prose } from '../core/Prose'; type Props = { question: Question;