UNPKG

@devbookhq/ui

Version:

Devbook UI is a React UI library

12 lines (11 loc) 463 B
/// <reference types="react" /> import type { useDevbook } from '@devbookhq/sdk'; export interface Props { url?: string; height?: string; lightTheme?: boolean; devbook: Pick<ReturnType<typeof useDevbook>, 'fs' | 'status'>; } declare function Iframe({ url: initURL, height, lightTheme, devbook: { fs, status, }, }: Props): JSX.Element; declare const _default: import("react").MemoExoticComponent<typeof Iframe>; export default _default;