export interface ActionNavBarProps { /** * Color of the navBar */ backgroundColor?: string; /** * Shows the back arrow button */ showBtnBack?: boolean; /** * Shows the right drawer button */ showRightDrawerBtn?: boolean; } export interface ActionNavBarEmits { /** * Function triggered when right drawer button is clicked */ (e: 'toggleRightDrawer'): void; /** * Function triggered when back arrow button is clicked */ (e: 'clickBackArrow'): void; }