@spindl-xyz/embed-react
Version:
## Getting Started
16 lines (15 loc) • 506 B
TypeScript
import React from "react";
type PropertiesObject = {
[key: string]: string | number | PropertiesObject;
};
export interface BannerEmbedProps {
publisherId: string;
placementId: string;
format?: string;
address?: string | string[];
style?: React.CSSProperties;
properties?: PropertiesObject;
_hostUrl?: string;
}
export declare function BannerEmbed({ publisherId, placementId, format, address, style, properties, _hostUrl, }: BannerEmbedProps): React.JSX.Element;
export {};