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