UNPKG

@britannica/ui

Version:
8 lines (7 loc) 226 B
import type { ElementType, FC, HTMLAttributes } from 'react'; export interface TabProps extends HTMLAttributes<HTMLElement> { active?: boolean; tag?: ElementType; } declare const Tab: FC<TabProps>; export default Tab;