import { Dialog as Kobalte } from "@kobalte/core/dialog" import { useI18n } from "../context/i18n" import { IconButton } from "./icon-button" export interface ImagePreviewProps { src: string alt?: string } export function ImagePreview(props: ImagePreviewProps) { const i18n = useI18n() return (
{props.alt
) }