UNPKG

@ark-ui/react

Version:

A collection of unstyled, accessible UI components for React, utilizing state machines for seamless interaction.

9 lines (8 loc) 353 B
import { PropTypes } from '@zag-js/react'; import { Optional } from '../../types'; import * as tabs from '@zag-js/tabs'; export interface UseTabsProps extends Optional<Omit<tabs.Props, 'dir' | 'getRootNode'>, 'id'> { } export interface UseTabsReturn extends tabs.Api<PropTypes> { } export declare const useTabs: (props?: UseTabsProps) => UseTabsReturn;