@venuecms/sdk-next
Version:
This is a work in progress and is heavily in flux until we launch 1.0 in February.
16 lines (13 loc) • 413 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { MediaItem } from '@venuecms/sdk';
declare const ASPECTS: {
square: string;
video: string;
};
declare const VenueImage: ({ className, image, aspect, props, }: {
className?: string;
image?: Partial<MediaItem>;
aspect?: keyof typeof ASPECTS;
props?: object;
}) => react_jsx_runtime.JSX.Element | null;
export { VenueImage };