You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
34 lines
1.1 KiB
// it has style inside index.scss ---> // Start CardDesign3 && end CardDesign3 |
|
|
|
import React from "react"; |
|
|
|
import CustomToast2 from "../CustomToast2"; |
|
|
|
import TitleSubtitle from "../../MiniComponents/TitleSubtitle"; |
|
|
|
import SearchBox from "../../SearchDesign/SearchBox"; |
|
|
|
const CardDesign3 = () => { |
|
return ( |
|
<div className="max-h-[600px] w-fit p-4 overflow-y-auto scrollYDesign flex flex-col bg-white shadow-sm border border-[#d2d2d2] rounded"> |
|
<TitleSubtitle |
|
subTitle={false} |
|
title={"افراد حاضر در این سالن"} |
|
titleClassName={"font-sansbold text-[#0F0543]"} |
|
titleBorderClassName={"w-1.5 h-7 bg-[#1F8CF9] ml-2"} |
|
/> |
|
<div className="mt-7"> |
|
<SearchBox |
|
searchIcon={"images/CardDesign3search-icon.svg"} |
|
placeholder={"جستجو برا اساس اسم یا کد ملی"} |
|
className={ |
|
"p-4 border-[#ddd] focus:border-gray-200 focus:ring-gray-200" |
|
} |
|
/> |
|
</div> |
|
<CustomToast2 num={10} /> |
|
</div> |
|
); |
|
}; |
|
|
|
export default CardDesign3;
|
|
|