UNPKG

@payfit/unity-components

Version:

11 lines (10 loc) 488 B
import { ReactNode } from 'react'; import { TabProps as AriaTabProps, Key } from 'react-aria-components/Tabs'; export interface TabProps extends Omit<AriaTabProps, 'isDisabled' | 'className' | 'style' | 'download' | 'ping' | 'routerOptions' | 'id'> { id: Key | undefined; suffix?: ReactNode; } declare const RawTab: import('react').ForwardRefExoticComponent<TabProps & { children?: ReactNode | undefined; } & import('react').RefAttributes<HTMLDivElement>>; export { RawTab };