work on non editable approval workflow steps view

This commit is contained in:
Joao Correia
2025-01-21 20:42:03 +00:00
parent 48187fc7f2
commit 73e2e95449
8 changed files with 155 additions and 42 deletions

View File

@@ -1,3 +1,4 @@
import Image from "next/image";
import React from "react";
import { FaRegUser } from "react-icons/fa";
@@ -16,9 +17,11 @@ export default function RequestedBy({ name, profileImage }: Props) {
<p className="text-sm font-medium text-gray-800">Requested by</p>
<div className="flex items-center space-x-2">
<p className="text-xs font-medium text-gray-800">{name}</p>
<img
<Image
src={profileImage}
alt={name}
width={24}
height={24}
className="w-6 h-6 rounded-full"
/>
</div>