@brizy/ui
Version:
React elements in Brizy style
21 lines (20 loc) • 527 B
TypeScript
import React, { ReactNode } from "react";
import { FCC } from "../../types";
export interface Props {
appID: string;
lang?: string;
className?: string;
href?: string;
tabs?: string;
hideCover?: boolean;
height?: number | string;
width?: number | string;
showFacepile?: boolean;
hideCTA?: boolean;
smallHeader?: boolean;
adaptContainerWidth?: boolean;
lazy?: boolean;
children?: ReactNode;
style?: React.CSSProperties;
}
export declare const FacebookPage: FCC<Props>;