react-facebook
Version:
Facebook components like a Login button, Like, Share, Comments, Embedded Post/Video, Messenger Chat, and Facebook Pixel tracking
16 lines (15 loc) • 486 B
TypeScript
import React from 'react';
import { type ParserProps } from './Parser';
export type EmbeddedPostProps = Partial<ParserProps> & {
href: string;
width?: string | number;
showText?: boolean;
lazy?: boolean;
};
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<Partial<ParserProps> & {
href: string;
width?: string | number;
showText?: boolean;
lazy?: boolean;
} & React.RefAttributes<HTMLElement>>>;
export default _default;