@veracity/vui
Version:
Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.
21 lines (20 loc) • 786 B
TypeScript
import { ThemingProps } from "../theme/types.js";
import "../theme/index.js";
import { SystemProps } from "../system/system.js";
import "../system/index.js";
import { DialogProps } from "../dialog/dialog.types.js";
import "../dialog/index.js";
//#region src/drawer/drawer.types.d.ts
type DrawerProps = SystemProps & ThemingProps<'Drawer'> & {
/** The props being passed into the internal Dialog component. */
dialogProps?: DialogProps;
/** Determines if the drawer is on the left side of the screen. @default false */
isLeft?: boolean;
/** Determines if the drawer is open. @default false */
isOpen?: boolean;
/** Function to be called when the drawer is closed */
onClose?: () => void;
};
//#endregion
export { DrawerProps };
//# sourceMappingURL=drawer.types.d.ts.map