Skip to content

Commit

Permalink
feat(ui): removing unwanted code
Browse files Browse the repository at this point in the history
Signed-off-by: Ankita Sahu <[email protected]>
  • Loading branch information
SAHU-01 committed Dec 16, 2024
1 parent cefdbaa commit 90bf8df
Showing 1 changed file with 0 additions and 34 deletions.
34 changes: 0 additions & 34 deletions src/base/Tabs/Tabs.tsx
Original file line number Diff line number Diff line change
@@ -1,37 +1,3 @@
// import { Tabs as MuiTabs, type TabsProps as MuiTabsProps } from '@mui/material';

// export function Tabs(props: MuiTabsProps): JSX.Element {
// return (
// <MuiTabs
// {...props}
// sx={(theme) => ({
// width: '100%',
// marginLeft: 0,
// '& .MuiTabs-indicator': {
// backgroundColor:
// theme.palette.mode === 'dark'
// ? theme.palette.background?.default
// : theme.palette.background?.brand?.hover
// },
// '& .MuiTab-root': {
// backgroundColor: 'transparent',
// color:
// theme.palette.mode === 'dark' ? theme.palette.text.default : theme.palette.text.default,
// '&.Mui-selected': {
// backgroundColor: 'transparent',
// color:
// theme.palette.mode === 'dark'
// ? theme.palette.background?.brand
// : theme.palette.background?.brand?.default
// }
// }
// })}
// />
// );
// }

// export default Tabs;

import { Tabs as MuiTabs, type TabsProps as MuiTabsProps } from '@mui/material';

export function Tabs(props: MuiTabsProps): JSX.Element {
Expand Down

0 comments on commit 90bf8df

Please sign in to comment.