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) • 571 B
TypeScript
import React from 'react';
import { type ParserProps } from './Parser';
export type ShareProps = Partial<ParserProps> & {
href?: string;
lazy?: boolean;
size?: 'small' | 'large';
layout?: 'box_count' | 'button_count' | 'button' | 'icon_link';
};
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<Partial<ParserProps> & {
href?: string;
lazy?: boolean;
size?: "small" | "large";
layout?: "box_count" | "button_count" | "button" | "icon_link";
} & React.RefAttributes<HTMLElement>>>;
export default _default;