fumadocs-ui
Version:
The Radix UI version of Fumadocs UI
11 lines • 539 B
TypeScript
import { LayoutTab, isLayoutTabActive } from "../../../layouts/shared/index.js";
import { ComponentProps, ReactNode } from "react";
//#region src/components/sidebar/tabs/dropdown.d.ts
type SidebarTabWithProps = LayoutTab;
declare function SidebarTabsDropdown({ options, placeholder, ...props }: {
placeholder?: ReactNode;
options: LayoutTab[];
} & ComponentProps<'button'>): import("react").JSX.Element;
declare const isTabActive: typeof isLayoutTabActive;
//#endregion
export { SidebarTabWithProps, SidebarTabsDropdown, isTabActive };