import { IconBack } from "~assets/icons"; import type { ReactNode, PropsWithChildren } from "react"; import styles from "./tab.module.less"; interface HeaderProps { title: ReactNode; onBack: () => void; } function Tab({ children }: PropsWithChildren) { return (