UNPKG

@kwiz/fluentui

Version:
14 lines (13 loc) 595 B
import { DrawerBodyProps, DrawerHeaderProps, DrawerHeaderTitleProps, DrawerProps } from "@fluentui/react-components"; import { DeepOmit } from "@kwiz/common"; import React from "react"; interface iProps { headerProps?: DrawerHeaderProps; headerTitleProps?: DrawerHeaderTitleProps; bodyProps?: DrawerBodyProps; title?: string | JSX.Element; titleActions?: JSX.Element; } type tProps = iProps & DeepOmit<DrawerProps, "title">; export declare const DrawerEX: (props: React.PropsWithChildren<tProps> & React.RefAttributes<HTMLDivElement>) => React.JSX.Element | null; export {};