UNPKG

@lobehub/ui

Version:

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

8 lines (7 loc) 260 B
import { FC } from 'react'; import { FlexboxProps } from 'react-layout-kit'; export interface CalloutProps extends FlexboxProps { type?: 'tip' | 'error' | 'important' | 'info' | 'warning'; } declare const Callout: FC<CalloutProps>; export default Callout;