Skip to content

Commit

Permalink
Fix check icon
Browse files Browse the repository at this point in the history
  • Loading branch information
kamranahmedse committed Apr 14, 2023
1 parent 589d157 commit ec9f836
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/TopicDetail/TopicDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export function TopicDetail() {
className="inline-flex items-center rounded-md bg-green-600 p-1 px-2 text-sm text-white hover:bg-green-700"
onClick={() => setIsActive(false)}
>
<img alt="Check" src={CheckIcon} />
<img alt="Check" class='w-3' src={CheckIcon} />
<span className="ml-2">Mark as Done</span>
</button>
)}
Expand All @@ -219,7 +219,7 @@ export function TopicDetail() {
className="inline-flex items-center rounded-md border border-green-600 bg-green-600 p-1 px-2 text-sm text-white hover:bg-green-700"
onClick={() => toggleMarkTopicDone(true)}
>
<img alt="Check" class="h-4 w-4" src={CheckIcon} />
<img alt="Check" class="w-3" src={CheckIcon} />
<span className="ml-2">Mark as Done</span>
</button>
)}
Expand Down

0 comments on commit ec9f836

Please sign in to comment.