@geist-ui/react
Version:
Modern and minimalist React UI library.
14 lines (13 loc) • 614 B
TypeScript
import Drawer from "./drawer";
import ModalTitle from "../modal/modal-title";
import ModalSubtitle from "../modal/modal-subtitle";
import ModalContent from "../modal/modal-content";
export declare type DrawerComponentType = typeof Drawer & {
Title: typeof ModalTitle;
Subtitle: typeof ModalSubtitle;
Content: typeof ModalContent;
};
export type { DrawerProps } from "./drawer";
export type { ModalTitleProps as DrawerTitleProps, ModalSubtitleProps as DrawerSubtitleProps, ModalContentProps as DrawerContentProps, } from "../modal";
declare const _default: DrawerComponentType;
export default _default;