@etsoo/materialui
Version:
TypeScript Material-UI Implementation
36 lines (35 loc) • 649 B
TypeScript
import React from "react";
/**
* Left drawer props
*/
export type LeftDrawerProps = React.PropsWithRef<{
/**
* Show when md up
*/
mdUp: boolean;
/**
* Organization
*/
organization?: number;
/**
* Width
*/
width: number;
/**
* Application name
*/
appName?: string;
/**
* Logo URL
*/
logoUrl?: string;
/**
* Is open or not
*/
open?: boolean;
/**
* Minimize hanlder
*/
onMinimize?: () => void;
}>;
export declare function LeftDrawer(props: React.PropsWithChildren<LeftDrawerProps>): import("react/jsx-runtime").JSX.Element;