UNPKG

@lobehub/ui

Version:

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

11 lines 392 B
import { FlexboxProps } from "../../Flex/type.mjs"; import "../../Flex/index.mjs"; import { FC } from "react"; //#region src/mdx/Callout/index.d.ts interface CalloutProps extends FlexboxProps { type?: 'tip' | 'error' | 'important' | 'info' | 'warning'; } declare const Callout: FC<CalloutProps>; //#endregion export { CalloutProps, Callout as default }; //# sourceMappingURL=index.d.mts.map