pxt-core
Version:
Microsoft MakeCode provides Blocks / JavaScript / Python tools and editors
14 lines (13 loc) • 402 B
TypeScript
import { ButtonViewProps } from "./Button";
export interface TabListProps {
className?: string;
manualActivation?: boolean;
orientation: "horizontal" | "vertical";
selectedId: string;
onTabSelected: (id: string) => void;
tabs: (ButtonViewProps & {
id: string;
ariaControls: string;
})[];
}
export declare const TabList: (props: TabListProps) => JSX.Element;