1return(
2 <Tabs
3 value={tabPosition}
4 onChange={handleTabChange}
5 TabIndicatorProps={{ <--- here
6 style: {
7 display: "none",
8 },
9 }} <-- to here
10 >
11 <Tab
12 label={"File"}
13 {...a11yProps(0)}
14 />
15 <Tab
16 label={"New"}
17 {...a11yProps(1)}
18 />
19 </Tabs>
20);