@awsui/components-react
Version:
AWS UI is a collection of [React](https://reactjs.org/) components that help create intuitive, responsive, and accessible user experiences for web applications. It is developed by Amazon Web Services (AWS). This work is available under the terms of the [A
18 lines (17 loc) • 550 B
TypeScript
import React from 'react';
import { IconProps } from '../icon';
interface TabButtonProps {
text: string;
iconName: IconProps.Name;
active: boolean;
disabled: boolean;
tabIndex?: number;
ariaHidden?: boolean;
paneId: string;
className: string;
onClick: () => void;
onFocus?: React.FocusEventHandler<HTMLButtonElement>;
onBlur?: React.FocusEventHandler<HTMLButtonElement>;
}
export declare const TabButton: React.ForwardRefExoticComponent<TabButtonProps & React.RefAttributes<HTMLButtonElement>>;
export {};