37 lines
1011 B
TypeScript
37 lines
1011 B
TypeScript
import { classNames } from "@calcom/lib";
|
|
|
|
import type { VerticalTabItemProps } from "./VerticalTabItem";
|
|
import VerticalTabItem from "./VerticalTabItem";
|
|
|
|
export { VerticalTabItem };
|
|
|
|
export interface NavTabProps {
|
|
tabs: VerticalTabItemProps[];
|
|
children?: React.ReactNode;
|
|
className?: string;
|
|
sticky?: boolean;
|
|
linkProps?: VerticalTabItemProps["linkProps"];
|
|
itemClassname?: string;
|
|
}
|
|
|
|
const NavTabs = function ({ tabs, className = "", sticky, linkProps, itemClassname, ...props }: NavTabProps) {
|
|
return (
|
|
<nav
|
|
className={classNames(
|
|
`no-scrollbar flex flex-col space-y-0.5 overflow-scroll ${className}`,
|
|
sticky && "sticky top-0 -mt-7"
|
|
)}
|
|
aria-label="Tabs"
|
|
{...props}>
|
|
{/* padding top for sticky */}
|
|
{sticky && <div className="pt-6" />}
|
|
{props.children}
|
|
{tabs.map((tab, idx) => (
|
|
<VerticalTabItem {...tab} key={idx} linkProps={linkProps} className={itemClassname} />
|
|
))}
|
|
</nav>
|
|
);
|
|
};
|
|
|
|
export default NavTabs;
|