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