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