mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
21 lines
516 B
TypeScript
21 lines
516 B
TypeScript
import { Card, Carousel } from "flowbite-react";
|
|
import Image from "next/image";
|
|
|
|
export const ReleaseInfoScreenshots = (props: { images: string[] }) => {
|
|
return (
|
|
<Card>
|
|
<Carousel className="aspect-[16/10]">
|
|
{props.images.map((image: string, index: number) => (
|
|
<Image
|
|
key={index}
|
|
className="object-cover"
|
|
src={image}
|
|
width={400}
|
|
height={300}
|
|
alt=""
|
|
/>
|
|
))}
|
|
</Carousel>
|
|
</Card>
|
|
);
|
|
};
|