import { ArrowLeftIcon, ArrowRightIcon } from '@heroicons/react/24/outline'; import { GridTileImage } from 'components/grid/tile'; export function GallerySkeleton({ images }: { images: { src: string; altText: string }[]; }) { const buttonClassName = 'h-full px-6 transition-all ease-in-out flex items-center justify-center cursor-not-allowed'; return (
{images.length > 1 ? (
) : null}
{images.length > 1 ? ( ) : null}
); }