@@ -199,7 +199,7 @@ export const MockApp = () => {
199199 < Typography color = "text.primary" variant = "h6" >
200200 Tuesday, October 18
201201 </ Typography >
202- < Stack direction = "row" gap = { 1 } >
202+ < Stack direction = "row" sx = { { gap : 1 } } >
203203 < Button variant = "outlined" startIcon = { < Upgrade /> } onClick = { ( ) => setIsDialogOpen ( true ) } className = "dialog-override" >
204204 Export...
205205 </ Button >
@@ -251,7 +251,7 @@ export const MockApp = () => {
251251 </ Link >
252252 </ StyledTableBodyCell >
253253 < StyledTableBodyCell >
254- < Stack direction = "row" gap = { 1 } alignItems = "center" >
254+ < Stack direction = "row" sx = { { gap : 1 , alignItems : "center" } } >
255255 < Avatar
256256 sx = { {
257257 width : 24 ,
@@ -283,8 +283,8 @@ export const MockApp = () => {
283283 < TablePagination component = "div" count = { 6 } page = { 0 } onPageChange = { ( ) => { } } rowsPerPage = { 10 } />
284284 </ Paper >
285285 < Paper sx = { { p : 2 , flex : "1 1 250px" } } className = "paper-override" >
286- < Stack direction = "row" justifyContent = "space-between" alignItems = "center" gap = { 2 } mb = { 1.5 } >
287- < Typography fontWeight = "bold" > Analytics</ Typography >
286+ < Stack direction = "row" sx = { { justifyContent : "space-between" , alignItems : "center" , gap : 2 , mb : 1.5 } } >
287+ < Typography sx = { { fontWeight : "bold" } } > Analytics</ Typography >
288288 < Select size = "small" value = { 15 } className = "select-override" >
289289 < MenuItem value = { 10 } > Today</ MenuItem >
290290 < MenuItem value = { 15 } > This Week</ MenuItem >
@@ -319,7 +319,7 @@ export const MockApp = () => {
319319 </ Stack >
320320
321321 < Divider />
322- < Stack pt = { 1.5 } gap = { 2 } >
322+ < Stack sx = { { pt : 1.5 , gap : 2 } } >
323323 < Sparkline title = "Tracking events" data = { FAKE_DATA_1 } icon = { < TrackChanges fontSize = "small" /> } />
324324 < Sparkline title = "Retention rate" data = { FAKE_DATA_2 } icon = { < GasMeterRounded fontSize = "small" /> } />
325325 < Sparkline title = "Customer TTRs" data = { FAKE_DATA_3 } icon = { < AcUnitSharp fontSize = "small" /> } />
0 commit comments