UNPKG

@visa/nova-react

Version:

Visa Product Design System Nova React library

19 lines (18 loc) 737 B
import { ElementType, ForwardedRef } from 'react'; export type TabProperties = { /** @ignore */ className?: string; /** section title */ sectionTitle?: boolean; /** Tag of Component */ tag?: ElementType; }; /** * Singular tab component to be used in a tab group. * @docs {@link https://design.visa.com/react/components/tabs | See Docs} */ declare const _default: <HTMLElementType = HTMLLIElement>(props: { children?: import("react").ReactNode | import("react").ReactNode[]; ref?: ForwardedRef<HTMLElementType> | undefined; } & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & TabProperties) => import("react").ReactElement; export default _default;