@awsui/components-react
Version:
On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en
33 lines • 799 B
TypeScript
import { TabsProps } from './interfaces';
interface TabHeaderBarProps {
onChange: (changeDetail: TabsProps.ChangeDetail) => void;
activeTabId: TabsProps['activeTabId'];
tabs: TabsProps['tabs'];
variant: TabsProps['variant'];
idNamespace: string;
ariaLabel?: string;
ariaLabelledby?: string;
i18nStrings?: TabsProps.I18nStrings;
keyboardActivationMode: Required<TabsProps['keyboardActivationMode']>;
actions?: TabsProps['actions'];
}
export declare function TabHeaderBar({
onChange,
activeTabId,
tabs,
variant,
idNamespace,
ariaLabel,
ariaLabelledby,
i18nStrings,
keyboardActivationMode,
actions
}: TabHeaderBarProps): JSX.Element;
export declare function getTabElementId({
namespace,
tabId
}: {
namespace: string;
tabId: string;
}): string;
export {};