import { clsx } from "clsx"; import { ComponentPropsWithoutRef } from "react"; export function TabList({ className, ...props }: ComponentPropsWithoutRef<"div">) { return (
); } export interface TabProps extends ComponentPropsWithoutRef<"button"> { isActive?: boolean; } export function Tab({ className, isActive, ...props }: TabProps) { return (