import { ActionIcon, Badge, Group, rem } from '@mantine/core' import { IconArrowLeft } from '@tabler/icons-react' import MyTitle from './MyTitle' interface MyTitlePageProps { title: string subtitle: string onBack?: () => void } export default function MyTitlePage(props: MyTitlePageProps) { const { title, subtitle, onBack } = props const iconStyle = { width: rem(24), height: rem(24) } return ( {onBack && ( )} {title} {subtitle} ) }