import clsx from "clsx"; import styles from "./TabBar.module.scss"; import Typography from "../Typography/Typography"; export type Tab = { label: string; value: T; }; type TabBarProps = { tabs: Tab[]; active: T; onChange: (value: T) => void; className?: string; }; export default function TabBar({ tabs, active, onChange, className }: TabBarProps) { return ( ); }