Add shared data page

This commit is contained in:
DwCay
2022-05-31 00:07:49 +03:00
parent 3b62d188c1
commit ac18be77a7
6 changed files with 169 additions and 1 deletions

View File

@@ -3,7 +3,7 @@ import React from "react";
function ValidationUsersImg({ image }) {
return (
<a className="block" href="#0">
<img className="rounded-full border-2 border-white box-content" src={image.img} width="28" alt={image.img} height="28"/>
<img className="rounded-full border-2 border-slate-100 box-content" src={image.img} width={`${image.size}`} alt={image.img} height={`${image.size}`}/>
</a>
);
}