/// import { DrawerProps } from '@chakra-ui/react'; export interface IDrawer extends DrawerProps { title: string; renderFooter?: () => React.ReactNode; /** Flag for content padding*/ hasPadding?: boolean; /** Flag for dark overlay in background*/ hasOverlay?: boolean; /** Add an offset to the top of the drawer */ offsetTop?: number | string; /** Add an offset to the left of the drawer */ offsetLeft?: number | string; /** Add an offset to the right of the drawer */ offsetRight?: number | string; /** Add an offset to the bottom of the drawer */ offsetBottom?: number | string; }