@@ -3,7 +3,7 @@ import { ActivePromotion } from '@linode/api-v4/lib/account/types';
3
3
import { GridSize } from '@mui/material/Grid' ;
4
4
import Grid from '@mui/material/Unstable_Grid2' ;
5
5
import { Breakpoint } from '@mui/material/styles' ;
6
- import { styled , useTheme } from '@mui/material/styles' ;
6
+ import { useTheme } from '@mui/material/styles' ;
7
7
import * as React from 'react' ;
8
8
import { useHistory , useLocation , useRouteMatch } from 'react-router-dom' ;
9
9
@@ -23,10 +23,6 @@ import PaymentDrawer from './PaymentDrawer';
23
23
import PromoDialog from './PromoDialog' ;
24
24
import { PromoDisplay } from './PromoDisplay' ;
25
25
26
- const GridContainer = styled ( Grid ) ( {
27
- marginBottom : 0 ,
28
- } ) ;
29
-
30
26
interface BillingSummaryProps {
31
27
balance : number ;
32
28
balanceUninvoiced : number ;
@@ -163,7 +159,7 @@ export const BillingSummary = (props: BillingSummaryProps) => {
163
159
164
160
return (
165
161
< >
166
- < GridContainer container spacing = { 2 } xs = { 12 } >
162
+ < Grid container margin = { 0 } spacing = { 2 } xs = { 12 } >
167
163
< Grid { ...gridDimensions } sm = { 6 } >
168
164
< BillingPaper variant = "outlined" >
169
165
< Typography variant = "h3" > Account Balance</ Typography >
@@ -257,7 +253,7 @@ export const BillingSummary = (props: BillingSummaryProps) => {
257
253
</ Box >
258
254
</ BillingPaper >
259
255
</ Grid >
260
- </ GridContainer >
256
+ </ Grid >
261
257
< PaymentDrawer
262
258
onClose = { closePaymentDrawer }
263
259
open = { paymentDrawerOpen }
0 commit comments