Feature/image dialog #8

Merged
ilia merged 19 commits from feature/image-dialog into main 2026-05-23 10:16:55 +00:00
2 changed files with 24 additions and 0 deletions
Showing only changes of commit 49cafe7161 - Show all commits
+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;
}