+ {processList.map((item, index) => {
+ return (
+ <>
+
{
+ setActive(item.name);
+ }}
+ className={classnames(
+ 'flex h-[40px] w-full cursor-pointer items-center justify-center rounded-full border border-dashed border-[#82BA41] bg-[#ecfbdc] text-sm font-semibold text-[#4A711C]',
+ {
+ '!bg-[#3EB93E] text-[#FFFFFF]': active === item.name,
+ }
+ )}
+ >
+ {item.title}
+
+ {index !== processList.length - 1 && (
+
+ )}
+ >
+ );
+ })}
+