Files
react-test/docs/data/joy/components/aspect-ratio/CarouselRatio.tsx.preview

15 lines
536 B
Plaintext
Raw Normal View History

2025-12-12 14:26:25 +09:00
{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>
))}