UNPKG

@baseplate-dev/ui-components

Version:

Shared UI component library

9 lines 622 B
import type * as React from 'react'; import { NavigationMenu as NavigationMenuPrimitive } from 'radix-ui'; /** * A tab-like interface that allows the user to navigate between different sections via links */ declare function NavigationTabs({ className, children, ...props }: React.ComponentPropsWithRef<typeof NavigationMenuPrimitive.Root>): React.ReactElement; declare function NavigationTabsItem({ className, children, asChild, ...props }: React.ComponentPropsWithRef<typeof NavigationMenuPrimitive.Link>): React.ReactElement; export { NavigationTabs, NavigationTabsItem }; //# sourceMappingURL=navigation-tabs.d.ts.map