diff --git a/apps/web/lib/components/kanban-card.tsx b/apps/web/lib/components/kanban-card.tsx index 24cdf4768..fcd0a08c0 100644 --- a/apps/web/lib/components/kanban-card.tsx +++ b/apps/web/lib/components/kanban-card.tsx @@ -3,6 +3,7 @@ import Image from 'next/image'; import VerticalThreeDot from "@components/ui/svgs/vertical-three-dot"; import { DraggableProvided } from "react-beautiful-dnd"; import CircularProgress from "@components/ui/svgs/circular-progress"; +import PriorityIcon from "@components/ui/svgs/priority-icon"; function getStyle(provided: DraggableProvided, style: any) { if (!style) { @@ -74,6 +75,27 @@ const stackImages = (index: number, length: number) => { } } +function Priority({ + level +}: { + level: number +}) { + + const numberArray = Array.from({ length: level }, (_, index) => index + 1); + + return( + <> +