From e186f6123a13bd2976dc3cf2b2eb8f98f9430f51 Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Wed, 28 Dec 2022 12:01:39 +0700 Subject: no message --- src/components/ProgressBar.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'src/components/ProgressBar.js') diff --git a/src/components/ProgressBar.js b/src/components/ProgressBar.js index cdb55205..8a2df0a4 100644 --- a/src/components/ProgressBar.js +++ b/src/components/ProgressBar.js @@ -1,12 +1,11 @@ -import { CheckIcon } from "@heroicons/react/24/outline"; -import { CheckCircleIcon } from "@heroicons/react/24/solid"; +import { Fragment } from "react"; const ProgressBar = ({ current, labels }) => { return (
{labels.map((label, index) => ( - <> -
+ +
{ index + 1 }
@@ -17,7 +16,7 @@ const ProgressBar = ({ current, labels }) => {
) } - +
))}
) -- cgit v1.2.3