@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) • 553 B
TypeScript
/**
* @license EUPL-1.2+
* Copyright Gemeente Amsterdam
*/
import type { HTMLAttributes, PropsWithChildren } from 'react';
export type TabsPanelProps = {
/** The identifier of the Tab Panel. */
id: string;
} & PropsWithChildren<HTMLAttributes<HTMLDivElement>>;
export declare const TabsPanel: import("react").ForwardRefExoticComponent<{
/** The identifier of the Tab Panel. */
id: string;
} & HTMLAttributes<HTMLDivElement> & {
children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLDivElement>>;