react-tabs-scrollable
Version:
a simple react scrollable tabs with a lot of additional features and with fully supporting of RTL mode
12 lines (11 loc) • 388 B
TypeScript
import { default as React } from 'react';
interface TabProps {
children: React.ReactNode;
className?: string;
style?: object;
selected?: boolean;
props?: React.ReactNode;
tabAs?: keyof JSX.IntrinsicElements & React.HTMLAttributes<HTMLOrSVGElement>;
}
declare const Tab: React.ForwardRefExoticComponent<TabProps & React.RefAttributes<unknown>>;
export default Tab;