UNPKG

@lobehub/ui

Version:

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

12 lines (11 loc) 382 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 { Callout, CalloutProps }; //# sourceMappingURL=index.d.mts.map