@redocly/theme
Version:
Shared UI components lib
14 lines (13 loc) • 351 B
TypeScript
import React from 'react';
export type ImageProps = {
src?: string;
srcSet?: string;
alt?: string;
className?: string;
width?: string | number;
height?: string | number;
border?: string;
withLightbox?: boolean;
style?: React.CSSProperties | string;
};
export declare function Image(props: ImageProps): JSX.Element;