@octopusdeploy/design-system-components
Version:
The design systems component library.
10 lines (9 loc) • 393 B
TypeScript
import type React from "react";
export interface TabsProps {
value: string;
onChange?: (event: React.ChangeEvent<object>, value: string) => void;
variant: "scrollable" | "fullWidth";
scrollButtons?: "auto";
children: React.ReactNode;
}
export declare function Tabs({ value, onChange, variant, scrollButtons, children }: TabsProps): import("react/jsx-runtime").JSX.Element;