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.

7 lines (6 loc) 212 B
import { ReactNode } from "react"; import { Theme } from "../utils.js"; export declare function ThemeContainer({ children, theme, }: { children: ReactNode; theme?: Theme; }): import("react").JSX.Element;