import { FlexWrapper } from "@ente/shared/components/Container"; import ArrowBack from "@mui/icons-material/ArrowBack"; import Close from "@mui/icons-material/Close"; import { Box, IconButton, Typography } from "@mui/material"; interface Iprops { title: string; caption?: string; onClose: () => void; backIsClose?: boolean; onRootClose?: () => void; actionButton?: JSX.Element; } export default function Titlebar({ title, caption, onClose, backIsClose, actionButton, onRootClose, }: Iprops): JSX.Element { return ( <> {backIsClose ? : } {actionButton && actionButton} {!backIsClose && ( )} {title} {caption} ); }