mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-07 08:44:40 +00:00
15 lines
371 B
TypeScript
15 lines
371 B
TypeScript
import { Card, Carousel } from "flowbite-react";
|
|
|
|
export const ReleaseInfoScreenshots = (props: {
|
|
images: string[];
|
|
}) => {
|
|
return (
|
|
<Card>
|
|
<Carousel className="aspect-[16/10]">
|
|
{props.images.map((image: string, index: number) => (
|
|
<img key={index} className="object-cover" src={image} />
|
|
))}
|
|
</Carousel>
|
|
</Card>
|
|
);
|
|
};
|