@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) • 683 B
TypeScript
/**
* @license EUPL-1.2+
* Copyright Gemeente Amsterdam
*/
import type { HTMLAttributes, PropsWithChildren } from 'react';
export type ImageSliderItemProps = {
/** The identifier of the item. Must match the key or order of the slides (starting at 0). */
slideId: number;
} & PropsWithChildren<HTMLAttributes<HTMLDivElement>>;
export declare const ImageSliderItem: import("react").ForwardRefExoticComponent<{
/** The identifier of the item. Must match the key or order of the slides (starting at 0). */
slideId: number;
} & HTMLAttributes<HTMLDivElement> & {
children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLDivElement>>;