11import CalendarMonthIcon from '@mui/icons-material/CalendarMonth' ;
22import React , { useEffect , useState } from 'react' ;
3- import { Avatar , Grid } from '../../base' ;
3+ import { Avatar , Grid2 } from '../../base' ;
44import { CloneIcon , CommunityClassIcon , OfficialClassIcon , OpenIcon , ShareIcon } from '../../icons' ;
55import VerificationClassIcon from '../../icons/ContentClassIcons/VerificationClassIcon' ;
66import DeploymentsIcon from '../../icons/Deployments/DeploymentsIcon' ;
@@ -230,7 +230,7 @@ const CustomCatalogCard: React.FC<CatalogCardProps> = ({
230230 { cardTechnologies && (
231231 < TechnologiesSection >
232232 < TechnologyText > Technologies</ TechnologyText >
233- < Grid
233+ < Grid2
234234 container
235235 style = { { gap : '4px' , alignItems : 'flex-start' , flexWrap : 'nowrap' } }
236236 >
@@ -243,7 +243,7 @@ const CustomCatalogCard: React.FC<CatalogCardProps> = ({
243243 ( getHostUrl ? getHostUrl ( ) : '' ) +
244244 `${ basePath } /${ technology . toLowerCase ( ) } /${ subBasePath } /${ technology . toLowerCase ( ) } -color.svg` ;
245245 return (
246- < Grid item key = { index } >
246+ < Grid2 key = { index } >
247247 < CustomTooltip key = { index } title = { technology . toLowerCase ( ) } >
248248 < img
249249 height = "24px"
@@ -252,12 +252,11 @@ const CustomCatalogCard: React.FC<CatalogCardProps> = ({
252252 src = { svgPath }
253253 />
254254 </ CustomTooltip >
255- </ Grid >
255+ </ Grid2 >
256256 ) ;
257257 } ) }
258258 { availableTechnologies . length > techlimit && (
259- < Grid
260- item
259+ < Grid2
261260 sx = { {
262261 padding : '0 8px 0 4px' ,
263262 borderRadius : '16px' ,
@@ -270,20 +269,19 @@ const CustomCatalogCard: React.FC<CatalogCardProps> = ({
270269 } }
271270 >
272271 +{ availableTechnologies . length - techlimit }
273- </ Grid >
272+ </ Grid2 >
274273 ) }
275274 </ >
276275 ) }
277- </ Grid >
276+ </ Grid2 >
278277 </ TechnologiesSection >
279278 ) }
280279 </ DesignDetailsDiv >
281280
282281 { isDetailed && (
283282 < DesignDetailsDiv style = { { marginTop : '20px' } } >
284- < Grid container style = { { justifyContent : 'space-between' , alignItems : 'center' } } >
285- < Grid
286- item
283+ < Grid2 container style = { { justifyContent : 'space-between' , alignItems : 'center' } } >
284+ < Grid2
287285 style = { {
288286 width : '100%' ,
289287 display : 'flex' ,
@@ -313,8 +311,8 @@ const CustomCatalogCard: React.FC<CatalogCardProps> = ({
313311 }
314312 ) }
315313 </ DateText >
316- </ Grid >
317- </ Grid >
314+ </ Grid2 >
315+ </ Grid2 >
318316 </ DesignDetailsDiv >
319317 ) }
320318 { version && (
0 commit comments