update src/components/CardTrelloDesign/index.js

master
Your Name 3 years ago
parent f3df09dafb
commit 6f9ec0f3f2
  1. 25
      src/components/CardTrelloDesign/index.js

@ -3,16 +3,13 @@ import ButtonNewDesign from "../ButtonNewDesign";
import CircleInCircle from "../CircleInCircle"; import CircleInCircle from "../CircleInCircle";
import NewTagDesign from "../NewTagDesign"; import NewTagDesign from "../NewTagDesign";
import profilePic1 from "./images/profilePic1.svg";
import profilePic2 from "./images/profilePic2.svg";
import profilePic3 from "./images/profilePic3.svg";
import clock from "./images/clock.svg"; import clock from "./images/clock.svg";
import nike from "./images/nike.svg"; import nike from "./images/nike.svg";
import messageText from "./images/message-text.svg"; import messageText from "./images/message-text.svg";
import ProfilePicNextToEachOther from "../ProfilePicNextToEachOther"; import ProfilePicNextToEachOther from "../ProfilePicNextToEachOther";
import AnimatedProgressBar from "../AnimatedProgressBar"; import AnimatedProgressBar from "../AnimatedProgressBar";
const CardTrelloDesign = ({ circle, pictures }) => { const CardTrelloDesign = ({ circle,commnets,tags, }) => {
return ( return (
<div className="w-3/12 mx-auto bg-white mt-10 rounded-md shadow p-3"> <div className="w-3/12 mx-auto bg-white mt-10 rounded-md shadow p-3">
{/* top */} {/* top */}
@ -77,18 +74,17 @@ const CardTrelloDesign = ({ circle, pictures }) => {
<div className="flex flex-row justify-between items-center mt-3"> <div className="flex flex-row justify-between items-center mt-3">
{/* right */} {/* right */}
<div className="flex flex-row items-center gap-x-1"> <div className="flex flex-row items-center gap-x-1">
{/* {pictures.map((pic, index) => ( <ProfilePicNextToEachOther num={3} marginLeft={"4px"} />
<img src={pic.image} alt="" className="w-10" />
))} */}
<ProfilePicNextToEachOther num={3} marginLeft={"5px"} />
</div> </div>
{/* left */} {/* left */}
<div className="flex flex-row items-center gap-x-1"> <div className="flex flex-row items-center gap-x-1">
{/* comment Icon */} {/* comment Icon */}
{commnets && (
<div className="flex flex-row items-center ml-1"> <div className="flex flex-row items-center ml-1">
<span className="text-xs ml-0.5 text-[10px] text-[#707070]">10</span> <span className="text-xs ml-0.5 text-[10px] text-[#707070]">10</span>
<img src={messageText} alt="comment-icon" className="w-5" /> <img src={messageText} alt="comment-icon" className="w-5" />
</div> </div>
)}
<NewTagDesign <NewTagDesign
title="29 فروردین" title="29 فروردین"
align={"flex-row-reverse"} align={"flex-row-reverse"}
@ -129,15 +125,6 @@ export default CardTrelloDesign;
CardTrelloDesign.defaultProps = { CardTrelloDesign.defaultProps = {
circle: true, circle: true,
pictures: [ commnets: false,
{ tags: false
image: profilePic1,
},
{
image: profilePic2,
},
{
image: profilePic3,
},
],
}; };

Loading…
Cancel
Save