UNPKG

@bothub-chat/ui

Version:

Bothub UI Components

14 lines (13 loc) 395 B
import React from 'react'; import { BlockVariant } from './types'; export interface BlockProps extends React.PropsWithChildren { className?: string; title?: string; toolbar?: React.ReactNode; background?: React.ReactNode; fullHeight?: boolean; variant?: BlockVariant; } export declare const Block: React.FC<BlockProps>; export * from './types'; export * from './styled';