react-facebook
Version:
Facebook components like a Login button, Like, Share, Comments, Embedded Post/Video, Messenger Chat, and Facebook Pixel tracking
18 lines (17 loc) • 589 B
TypeScript
import React from 'react';
import { type ParserProps } from './Parser';
export type MessageUsProps = Partial<ParserProps> & {
messengerAppId: string;
pageId: string;
color?: 'blue' | 'white';
size?: 'standard' | 'large' | 'xlarge';
dataRef?: string;
};
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<Partial<ParserProps> & {
messengerAppId: string;
pageId: string;
color?: "blue" | "white";
size?: "standard" | "large" | "xlarge";
dataRef?: string;
} & React.RefAttributes<HTMLElement>>>;
export default _default;