diff --git a/src/components/ButtonNewDesign/index.js b/src/components/ButtonNewDesign/index.js new file mode 100644 index 0000000..9b51764 --- /dev/null +++ b/src/components/ButtonNewDesign/index.js @@ -0,0 +1,47 @@ +import React from "react"; + +import arrow from "../../assets/icons/white-left-arrow.svg"; + +const ButtonNewDesign = ({ + bgColor, + bgHoverColor, + iconBgColor, + textColor, + border, + borderColor, + borderRadius, + fontSize, + padding, + icon, + buttonIcon, +}) => { + return ( + + ); +}; + +export default ButtonNewDesign; + +ButtonNewDesign.defaultProps = { + bgColor: "bg-darkGreenBg", + bgHoverColor: "hover:bg-gray-900", + iconBgColor: "bg-darkGreenBg", + textColor: "text-white", + border: "border-b-4", + borderColor: "border-lightBlueBorderColor", + borderRadius: "rounded", + fontSize: "text-sm", + padding: "p-4", + // icons + icon: true, + buttonIcon: arrow, +}; diff --git a/src/components/FileManager/images/arrow-left.svg b/src/components/FileManager/images/arrow-left.svg new file mode 100644 index 0000000..623d3dc --- /dev/null +++ b/src/components/FileManager/images/arrow-left.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/components/FileManager/images/plus.svg b/src/components/FileManager/images/plus.svg new file mode 100644 index 0000000..e75153b --- /dev/null +++ b/src/components/FileManager/images/plus.svg @@ -0,0 +1,3 @@ + + + + diff --git a/src/components/FileManager/index.js b/src/components/FileManager/index.js index 56ca254..3c3f175 100644 --- a/src/components/FileManager/index.js +++ b/src/components/FileManager/index.js @@ -4,9 +4,13 @@ import BreadCrumb from "../BreadCrumb"; import SearchBox from "../SearchBox"; import TitleSubtitle from "../TitleSubtitle"; import CardHolder from "../CardHolder"; +import ButtonNewDesign from "../ButtonNewDesign"; +import Playlist from "../Playlist"; +import Folderlists from "../Folderlist"; import graySearchIcon from "./images/gray-search-icon.svg"; -import Playlist from "../Playlist"; +import arrowLeft from "./images/arrow-left.svg"; +import plus from "./images/plus.svg"; const FileManager = () => { return ( @@ -37,8 +41,45 @@ const FileManager = () => {
- {/* ? pageTitle */} - +
+ {/* pageTitleSubTitle & Buttons */} +
+ {/* ? pageTitle */} +
+ +
+ {/* buttons */} +
+ + +
+
+ +