@amsterdam/design-system-react
Version:
All React components from the Amsterdam Design System. Use it to compose pages in your website or application.
16 lines (15 loc) • 636 B
TypeScript
/**
* @license EUPL-1.2+
* Copyright Gemeente Amsterdam
*/
import type { ButtonHTMLAttributes, PropsWithChildren } from 'react';
export type TabsButtonProps = {
/** The identifier of the corresponding tab panel. */
'aria-controls': string;
} & PropsWithChildren<ButtonHTMLAttributes<HTMLButtonElement>>;
export declare const TabsButton: import("react").ForwardRefExoticComponent<{
/** The identifier of the corresponding tab panel. */
'aria-controls': string;
} & ButtonHTMLAttributes<HTMLButtonElement> & {
children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLButtonElement>>;