UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

8 lines (7 loc) 247 B
import type { Ref } from 'react'; import type { FlexboxProps } from 'react-layout-kit'; export interface BubbleProps extends FlexboxProps { ref?: Ref<HTMLDivElement>; shadow?: boolean; variant?: 'filled' | 'outlined' | 'borderless'; }