Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
15 lines
536 B
Plaintext
15 lines
536 B
Plaintext
{data.map((item) => (
|
|
<Card orientation="horizontal" size="sm" key={item.title} variant="outlined">
|
|
<AspectRatio ratio="1" sx={{ minWidth: 60 }}>
|
|
<img
|
|
srcSet={`${item.src}?h=120&fit=crop&auto=format&dpr=2 2x`}
|
|
src={`${item.src}?h=120&fit=crop&auto=format`}
|
|
alt={item.title}
|
|
/>
|
|
</AspectRatio>
|
|
<Box sx={{ whiteSpace: 'nowrap', mx: 1 }}>
|
|
<Typography level="title-md">{item.title}</Typography>
|
|
<Typography level="body-sm">{item.description}</Typography>
|
|
</Box>
|
|
</Card>
|
|
))} |