UNPKG

@hhgtech/hhg-components

Version:
13 lines (12 loc) 421 B
import React, { CSSProperties } from 'react'; export type Props = { url: string; image?: string; className?: string; style?: CSSProperties; autoPlay?: boolean; baseUrl?: string; onPushStatus?: (val: boolean) => void; }; declare const SocialLinkPreview: ({ url, image, className, style, baseUrl, autoPlay, onPushStatus, }: Props) => React.JSX.Element; export { SocialLinkPreview };