@innovaccer/design-system
Version:
React components library project for Innovaccer Design System
20 lines (19 loc) • 591 B
TypeScript
import React from 'react';
import { BaseProps } from "../../../utils/types";
export interface EmptyImageProps extends BaseProps, React.ImgHTMLAttributes<HTMLImageElement> {
children?: React.ReactNode;
src?: string;
alt?: string;
height?: string | number;
minHeight?: string | number;
maxHeight?: string | number;
}
export declare const imageHeight: {
standard: string;
compressed: string;
tight: string;
large: string;
small: string;
};
declare const EmptyStateImage: (props: EmptyImageProps) => React.JSX.Element;
export default EmptyStateImage;