UNPKG

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.

8 lines (7 loc) 232 B
import { Theme } from "../utils.js"; import { ReactNode } from "react"; export declare function Container({ children, href, theme, }: { children: ReactNode; href?: string; theme?: Theme; }): import("react").JSX.Element;