diff --git a/components/conceptInfo.tsx b/components/conceptInfo.tsx index aae0ffe..cbc00ed 100644 --- a/components/conceptInfo.tsx +++ b/components/conceptInfo.tsx @@ -20,6 +20,7 @@ import LevelBadge from "./questions/levelBadge"; import { LevelsProgressBar } from "./questions/progressBars"; import { useRouter } from "next/router"; import { signInTooltip } from "../lib/learningAndPlanning/learningAndPlanning"; +import { BoltIcon } from "./svgs/icons"; type OnVote = (node: NodeSingular, url: string, up: boolean | null) => void; @@ -95,6 +96,15 @@ export function ConceptInfo({ } className={questionModalShown ? "z-[15]" : ""} > +
+ {/* TODO: Remove hard coded time estimates */} +
+ + + Estimated completion time: 10 mins + +
+
); } + +export function BoltIcon() { + return ( + + + + ); +}