UNPKG

@nayan-ui/react

Version:

Reusable Component Library for ReactJS.

15 lines 487 B
import React, { ReactNode } from 'react'; export interface NTabsProps { isFull?: boolean; items: string[]; children: ReactNode; selected: string; className?: string; itemClassName?: string; activeItemClassName?: string; onChange: (selected: string) => void; ariaLabel?: string; id?: string; } export declare const NTabs: React.MemoExoticComponent<(props: NTabsProps) => import("react/jsx-runtime").JSX.Element>; //# sourceMappingURL=NTabs.d.ts.map