import Grid from "@/components/Grid/GridCustom"; import TextCustom from "@/components/Text/TextCustom"; import AdminBackButton from "./BackButton"; export default function AdminBackButtonAntTitle({ title, rightComponent, newComponent, }: { title?: string; rightComponent?: React.ReactNode; newComponent?: React.ReactNode; }) { return ( <> {newComponent ? ( newComponent ) : ( {title} )} {rightComponent} ); }