UNPKG

@hhgtech/hhg-components

Version:
13 lines (12 loc) 469 B
import React from 'react'; import { SocialLinkDataType } from "../../createNewPostContent/type"; export type Props = { isOpen?: boolean; onClose?: () => void; socialLinkData?: SocialLinkDataType | null; onSocialLinkChanged?: (data?: { url: string; banner?: File | string; } | null) => void; }; export declare const SocialLinkPopup: ({ isOpen, onClose, onSocialLinkChanged, socialLinkData, }: Props) => React.JSX.Element;