@amsterdam/design-system-react
Version:
All React components from the Amsterdam Design System. Use it to compose pages in your website or application.
19 lines (18 loc) • 614 B
TypeScript
/**
* @license EUPL-1.2+
* Copyright Gemeente Amsterdam
*/
import type { ImgHTMLAttributes } from 'react';
import { AspectRatioProps } from '../common/types';
export type ImageProps = {
/**
* A textual description of the content of the image.
*/
alt: string;
} & AspectRatioProps & ImgHTMLAttributes<HTMLImageElement>;
export declare const Image: import("react").ForwardRefExoticComponent<{
/**
* A textual description of the content of the image.
*/
alt: string;
} & AspectRatioProps & ImgHTMLAttributes<HTMLImageElement> & import("react").RefAttributes<HTMLImageElement>>;