File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
'use client'
2
2
import MuiDrawer , { DrawerProps } from '@mui/material/Drawer' ;
3
- import { styled , Theme , CSSObject } from '@mui/material' ;
3
+ import { styled , Theme , CSSObject } from '@mui/material/styles ' ;
4
4
import { useState } from "react" ;
5
5
import IconButton from '@mui/material/IconButton'
6
6
import { Bars3Icon } from '@heroicons/react/24/outline'
Original file line number Diff line number Diff line change 1
1
'use client'
2
2
import TableRow , { TableRowProps } from '@mui/material/TableRow' ;
3
3
import TableCell from '@mui/material/TableCell' ;
4
+ import { SxProps , Theme } from '@mui/material/styles' ;
4
5
import Box from '@mui/material/Box' ;
5
6
import Collapse from '@mui/material/Collapse' ;
6
7
import IconButton from '@mui/material/IconButton' ;
7
8
import React , { useState } from 'react' ;
8
9
import { ChevronDownIcon , ChevronUpIcon } from '@heroicons/react/24/outline' ;
9
10
import FocusedTableRow from './FocusdTableRow' ;
10
- import { SxProps , Theme } from '@mui/material' ;
11
+
11
12
12
13
export interface ExpandedTableRowProps extends TableRowProps {
13
14
detail : React . ReactElement ;
Original file line number Diff line number Diff line change 2
2
import TableRow , { TableRowProps } from '@mui/material/TableRow' ;
3
3
import { type ReactElement } from 'react' ;
4
4
import { useFocusedRow } from './FocusedRowProvider' ;
5
- import { SxProps , Theme , alpha } from '@mui/material' ;
5
+ import { SxProps , Theme , alpha } from '@mui/material/styles ' ;
6
6
7
7
export interface FocusedTableRowProps extends TableRowProps {
8
8
detail : ReactElement ;
You can’t perform that action at this time.
0 commit comments