@replyke/ui-core-react-js
Version:
Replyke: Build interactive apps with social features like comments, votes, feeds, user lists, notifications, and more.
15 lines (14 loc) • 450 B
TypeScript
declare function GiphyContainer({ onClickBack, onSelectGif, giphyApiKey, visible, }: {
onClickBack: () => void;
onSelectGif: (selectedGif: {
id: string;
url: string;
gifUrl: string;
gifPreviewUrl: string;
altText: string | undefined;
aspectRatio: number;
}) => void;
giphyApiKey: string;
visible: boolean;
}): import("react/jsx-runtime").JSX.Element;
export default GiphyContainer;