design dashboard comments & messages & modals

This commit is contained in:
Ehsan
2024-09-04 03:00:36 +03:30
parent bc47663002
commit 52a745fcb8
34 changed files with 669 additions and 128 deletions
+11 -11
View File
@@ -1,16 +1,16 @@
function CalndarD() {
function CalndarD({ active }) {
return (
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
<path d="M8 2V5" stroke="#616161" strokeWidth="1.5" strokeMiterlimit="10" strokeLinecap="round" strokeLinejoin="round" />
<path d="M16 2V5" stroke="#616161" strokeWidth="1.5" strokeMiterlimit="10" strokeLinecap="round" strokeLinejoin="round" />
<path d="M3.5 9.09H20.5" stroke="#616161" strokeWidth="1.5" strokeMiterlimit="10" strokeLinecap="round" strokeLinejoin="round" />
<path d="M21 8.5V17C21 20 19.5 22 16 22H8C4.5 22 3 20 3 17V8.5C3 5.5 4.5 3.5 8 3.5H16C19.5 3.5 21 5.5 21 8.5Z" stroke="#616161" strokeWidth="1.5" strokeMiterlimit="10" strokeLinecap="round" strokeLinejoin="round" />
<path d="M15.6937 13.7H15.7027" stroke="#616161" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
<path d="M15.6937 16.7H15.7027" stroke="#616161" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
<path d="M11.9945 13.7H12.0035" stroke="#616161" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
<path d="M11.9945 16.7H12.0035" stroke="#616161" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
<path d="M8.29529 13.7H8.30427" stroke="#616161" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
<path d="M8.29529 16.7H8.30427" stroke="#616161" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
<path d="M8 2V5" stroke={active ? '#5559CE' : '#616161'} strokeWidth="1.5" strokeMiterlimit="10" strokeLinecap="round" strokeLinejoin="round" />
<path d="M16 2V5" stroke={active ? '#5559CE' : '#616161'} strokeWidth="1.5" strokeMiterlimit="10" strokeLinecap="round" strokeLinejoin="round" />
<path d="M3.5 9.09H20.5" stroke={active ? '#5559CE' : '#616161'} strokeWidth="1.5" strokeMiterlimit="10" strokeLinecap="round" strokeLinejoin="round" />
<path d="M21 8.5V17C21 20 19.5 22 16 22H8C4.5 22 3 20 3 17V8.5C3 5.5 4.5 3.5 8 3.5H16C19.5 3.5 21 5.5 21 8.5Z" stroke={active ? '#5559CE' : '#616161'} strokeWidth="1.5" strokeMiterlimit="10" strokeLinecap="round" strokeLinejoin="round" />
<path d="M15.6937 13.7H15.7027" stroke={active ? '#5559CE' : '#616161'} strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
<path d="M15.6937 16.7H15.7027" stroke={active ? '#5559CE' : '#616161'} strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
<path d="M11.9945 13.7H12.0035" stroke={active ? '#5559CE' : '#616161'} strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
<path d="M11.9945 16.7H12.0035" stroke={active ? '#5559CE' : '#616161'} strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
<path d="M8.29529 13.7H8.30427" stroke={active ? '#5559CE' : '#616161'} strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
<path d="M8.29529 16.7H8.30427" stroke={active ? '#5559CE' : '#616161'} strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" />
</svg>
)
}