deisgn page account bank header

This commit is contained in:
Ehsan
2024-10-09 20:20:03 +03:30
parent c1898eb654
commit 2a98790ffd
10 changed files with 150 additions and 7 deletions
+35
View File
@@ -0,0 +1,35 @@
import Tabs from "@/app/component/Tabs";
function Tab({ value, listTab, handleChange }) {
return (
<Tabs
isSm={false}
style={{
".MuiTabs-indicator": {
height: "2px",
borderRadius: "16px",
background: "#5559CE",
},
"& .MuiTabs-flexContainer": {
borderBottom: "2px solid #EFEFEF",
},
"& .mui-11pdt05-MuiButtonBase-root-MuiTab-root.Mui-selected": {
color: "#5559CE !important",
},
"& .MuiButtonBase-root": {
fontWeight: "400 !important",
},
"& .MuiButtonBase-root.Mui-selected": {
color: "#5559CE !important",
fontWeight: "700 !important",
transition: "0.3s all !important",
},
}}
value={value}
listTab={listTab}
handleChange={handleChange}
/>
);
}
export default Tab;