@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
34 lines (33 loc) • 789 B
text/typescript
import { FlexboxProps } from "../../Flex/type.mjs";
import "../../Flex/index.mjs";
import { CSSProperties, ReactNode } from "react";
//#region src/chat/ChatHeader/type.d.ts
interface ChatHeaderProps extends FlexboxProps {
classNames?: {
center?: string;
left?: string;
right?: string;
};
gaps?: {
center?: number;
left?: number;
right?: number;
};
left?: ReactNode;
onBackClick?: () => void;
right?: ReactNode;
showBackButton?: boolean;
styles?: {
center?: CSSProperties;
left?: CSSProperties;
right?: CSSProperties;
};
}
interface ChatHeaderTitleProps {
desc?: string | ReactNode;
tag?: ReactNode;
title: string | ReactNode;
}
//#endregion
export { ChatHeaderProps, ChatHeaderTitleProps };
//# sourceMappingURL=type.d.mts.map