react-facebook
Version:
Facebook components like a Login button, Like, Share, Comments, Embedded Post/Video, Messenger Chat, and Facebook Pixel tracking
30 lines (29 loc) • 898 B
TypeScript
import React from 'react';
import { type ParserProps } from './Parser';
export type LikeProps = Partial<ParserProps> & {
referral?: string;
href?: string;
layout?: 'standard' | 'button_count' | 'button' | 'box_count';
showFaces?: boolean;
colorScheme?: string;
action?: string;
share?: boolean;
width?: number | string;
size?: string;
kidDirectedSite?: boolean;
lazy?: boolean;
};
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<Partial<ParserProps> & {
referral?: string;
href?: string;
layout?: "standard" | "button_count" | "button" | "box_count";
showFaces?: boolean;
colorScheme?: string;
action?: string;
share?: boolean;
width?: number | string;
size?: string;
kidDirectedSite?: boolean;
lazy?: boolean;
} & React.RefAttributes<HTMLElement>>>;
export default _default;