@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
27 lines (26 loc) • 857 B
text/typescript
import { ActionIconProps } from "../ActionIcon/type.mjs";
import "../ActionIcon/index.mjs";
import { CSSProperties, Ref } from "react";
import { DrawerProps, MenuProps } from "antd";
//#region src/Burger/type.d.ts
interface BurgerProps {
className?: string;
drawerProps?: Partial<Omit<DrawerProps, 'items' | 'opened' | 'setOpened'>>;
fullscreen?: boolean;
headerHeight?: number;
iconProps?: Partial<ActionIconProps>;
items: MenuProps['items'];
onClick?: MenuProps['onClick'];
openKeys?: MenuProps['openKeys'];
opened: boolean;
ref?: Ref<HTMLDivElement>;
rootClassName?: string;
selectedKeys?: MenuProps['selectedKeys'];
setOpened: (state: boolean) => void;
size?: ActionIconProps['size'];
style?: CSSProperties;
variant?: ActionIconProps['variant'];
}
//#endregion
export { BurgerProps };
//# sourceMappingURL=type.d.mts.map