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.

37 lines
928 B

3 years ago
import React from "react";
3 years ago
import BreadCrumb from "../BreadCrumb";
import SearchBox from "../SearchBox";
import TitleSubtitle from "../TitleSubtitle";
3 years ago
import CardHolder from "../CardHolder";
3 years ago
3 years ago
import graySearchIcon from "./images/gray-search-icon.svg";
3 years ago
const FileManager = () => {
return (
<div style={{ backgroundColor: "#FBFBFB" }}>
<div className="flex flex-row justify-between w-8/12">
<div className="">
<BreadCrumb />
<TitleSubtitle />
</div>
<div className="self-end">
<SearchBox
borderClr={"#EEEEEE"}
backgroundColor={"#fff"}
inputWidth={"100%"}
placeHolderColor={"placeholder-gray-300"}
searchIcon={graySearchIcon}
/>
</div>
</div>
3 years ago
<div className="bg-yellow-600">
{" "}
<CardHolder />
</div>
3 years ago
</div>
);
3 years ago
};
3 years ago
export default FileManager;