|
|
|
@ -9,26 +9,33 @@ import graySearchIcon from "./images/gray-search-icon.svg"; |
|
|
|
|
|
|
|
|
|
const FileManager = () => { |
|
|
|
|
return ( |
|
|
|
|
<div style={{ backgroundColor: "#FBFBFB" }}> |
|
|
|
|
<div className="flex flex-row justify-between w-8/12"> |
|
|
|
|
<div className=""> |
|
|
|
|
<div |
|
|
|
|
style={{ backgroundColor: "#FBFBFB" }} |
|
|
|
|
className="px-7 py-5 flex flex-row" |
|
|
|
|
> |
|
|
|
|
{/* ? right Section */} |
|
|
|
|
<div className="flex-1"> |
|
|
|
|
{/* ? breadCrumb */} |
|
|
|
|
<div className="mb-5"> |
|
|
|
|
<BreadCrumb /> |
|
|
|
|
<TitleSubtitle /> |
|
|
|
|
</div> |
|
|
|
|
<div className="self-end"> |
|
|
|
|
<SearchBox |
|
|
|
|
borderClr={"#EEEEEE"} |
|
|
|
|
backgroundColor={"#fff"} |
|
|
|
|
inputWidth={"100%"} |
|
|
|
|
placeHolderColor={"placeholder-gray-300"} |
|
|
|
|
searchIcon={graySearchIcon} |
|
|
|
|
/> |
|
|
|
|
{/* ? pageTitle & searchbox */} |
|
|
|
|
<div className="flex flex-row justify-between"> |
|
|
|
|
{/* ? pageTitle */} |
|
|
|
|
<TitleSubtitle /> |
|
|
|
|
{/* ? searchbox */} |
|
|
|
|
<div className="self-end"> |
|
|
|
|
<SearchBox |
|
|
|
|
borderClr={"#EEEEEE"} |
|
|
|
|
backgroundColor={"#fff"} |
|
|
|
|
inputWidth={"100%"} |
|
|
|
|
placeHolderColor={"placeholder-gray-300"} |
|
|
|
|
searchIcon={graySearchIcon} |
|
|
|
|
/> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div className="bg-yellow-600"> |
|
|
|
|
{" "} |
|
|
|
|
<CardHolder /> |
|
|
|
|
</div> |
|
|
|
|
{/* left Section */} <CardHolder /> |
|
|
|
|
</div> |
|
|
|
|
); |
|
|
|
|
}; |
|
|
|
|