react-bluesky-embed
Version:
React Bluesky Embed allows you to embed post threads, profiles, and comments in your React application when using Next.js, Create React App, Vite, and more.
11 lines (10 loc) • 325 B
TypeScript
import type { PostThread } from "../api/index.js";
import "../main.css";
import { Theme } from "../utils.js";
type Props = {
postThread: PostThread;
theme?: Theme;
hidePost?: boolean;
};
export declare const EmbeddedPostThread: ({ postThread, theme, hidePost, }: Props) => import("react").JSX.Element;
export {};