import type { HorizontalTabItemProps } from "./HorizontalTabItem"; import HorizontalTabItem from "./HorizontalTabItem"; export interface NavTabProps { tabs: HorizontalTabItemProps[]; linkProps?: HorizontalTabItemProps["linkProps"]; actions?: JSX.Element; } const HorizontalTabs = function ({ tabs, linkProps, actions, ...props }: NavTabProps) { return (
{actions && actions}
); }; export default HorizontalTabs;