@hhgtech/hhg-components
Version:
Hello Health Group common components
8 lines (7 loc) • 341 B
TypeScript
import React from 'react';
export type Props = {
alt: string;
backupSrc?: string;
placeholderSrc?: string;
} & React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>;
export declare const ImageWrap: ({ alt, backupSrc, src, placeholderSrc, style, ref, ...props }: Props) => React.JSX.Element;