feat: ImageLightbox placeholder

This commit is contained in:
Ilia Mashkov
2026-05-21 20:28:28 +03:00
parent 58eae96791
commit 49cafe7161
2 changed files with 24 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
export { ImageLightbox } from './ui/ImageLightbox';
@@ -0,0 +1,23 @@
'use client';
type Props = {
/**
* Image source URL
*/
src: string;
/**
* Image alt text, also used as the dialog accessible label
*/
alt: string;
/**
* CSS classes forwarded to the thumbnail button wrapper
*/
className?: string;
};
/**
* Clickable image thumbnail that opens a fullscreen brutalist dialog on click.
*/
export function ImageLightbox(_props: Props) {
return null;
}