UNPKG

@octopusdeploy/design-system-components

Version:
10 lines (9 loc) 393 B
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;