@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) • 548 B
TypeScript
/**
* @license EUPL-1.2+
* Copyright Gemeente Amsterdam
*/
import type { ButtonHTMLAttributes, PropsWithChildren } from 'react';
export type TabsButtonProps = {
/** An identifier. */
tab: string;
} & PropsWithChildren<ButtonHTMLAttributes<HTMLButtonElement>>;
export declare const TabsButton: import("react").ForwardRefExoticComponent<{
/** An identifier. */
tab: string;
} & ButtonHTMLAttributes<HTMLButtonElement> & {
children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLButtonElement>>;