File tree Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Expand file tree Collapse file tree 2 files changed +22
-2
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ function InvitationTable({
4545 < span className = "flex-1 p-4 text-left" > Email</ span >
4646 < span className = "flex-1 p-4 text-left" > Role</ span >
4747 < span className = "flex-1 p-4 text-left" > Status</ span >
48+ < span className = "flex-1 p-4 text-left" > Action</ span >
4849 </ div >
4950
5051 { /* Data Rows */ }
@@ -60,7 +61,17 @@ function InvitationTable({
6061 >
6162 < span className = "flex-1 p-4 text-left" > { invitee . email } </ span >
6263 < span className = "flex-1 p-4 text-left" > { invitee . role } </ span >
63- < span className = "flex-1 p-4 text-left" > { invitation . status } </ span >
64+ < span className = "flex-1 p-4 text-left" >
65+ { invitation . status }
66+ </ span >
67+ < span className = "flex-1 p-4 text-left" >
68+ < button
69+ type = "button"
70+ className = "text-white bg-primary hover:bg-[#6a58ab] focus:ring-4 font-medium rounded-lg text-sm px-5 py-2.5 mr-2 mb-2"
71+ >
72+ Cancel
73+ </ button >
74+ </ span >
6475 </ div >
6576 ) ) }
6677 </ div >
Original file line number Diff line number Diff line change @@ -221,6 +221,15 @@ function Invitation() {
221221 staticNumber = "10"
222222 percentage = "30"
223223 />
224+ < InvitationCard
225+ icon = {
226+ < LuHourglass className = "text-[#9e85f5] w-8 h-8 md:w-12 md:h-12" />
227+ }
228+ status = "Cancelled"
229+ time = "Last 7 days"
230+ staticNumber = "80"
231+ percentage = "40"
232+ />
224233 < InvitationCard
225234 icon = {
226235 < BsPersonFillX className = "text-[#9e85f5] w-8 h-8 md:w-12 md:h-12" />
@@ -297,4 +306,4 @@ function Invitation() {
297306 ) ;
298307}
299308
300- export default Invitation ;
309+ export default Invitation ;
You can’t perform that action at this time.
0 commit comments