@octopusdeploy/design-system-components
Version:
The design systems component library.
10 lines (9 loc) • 317 B
TypeScript
import type { ReactNode } from "react";
export interface TabProps {
label: ReactNode;
value: string;
disabled?: boolean;
tabIndex?: number;
children?: React.ReactNode;
}
export declare const Tab: import("react").ForwardRefExoticComponent<TabProps & import("react").RefAttributes<HTMLDivElement>>;