@prezly/theme-kit-ui
Version:
UI components for Prezly themes
14 lines (13 loc) • 477 B
TypeScript
import type { NewsroomGallery } from '@prezly/sdk';
export declare function GalleryTitle({ className, gallery }: GalleryTitle.Props): import("react/jsx-runtime").JSX.Element;
export declare namespace GalleryTitle {
interface DisplayedGallery {
name: NewsroomGallery['name'];
description: NewsroomGallery['description'];
downloadHref?: string | null;
}
interface Props {
className?: string;
gallery: DisplayedGallery;
}
}