import * as React from "react" import { cn } from "@/lib/utils" export interface GalleryCardProps extends React.HTMLAttributes { src: string alt: string label: string aspectRatio?: string } const GalleryCard = React.forwardRef( ({ className, src, alt, label, aspectRatio = "3/4", ...props }, ref) => { return (
{alt}
{label}
) }, ) GalleryCard.displayName = "GalleryCard" export { GalleryCard }