@kwiz/fluentui
Version:
KWIZ common controls for FluentUI
14 lines (13 loc) • 595 B
TypeScript
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 {};