Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / src / playground / Image / typings.d.ts
Size: Mime:
import { ReactNode } from 'react';
export interface ImageProps {
    Wrap?: ReactNode;
    hasNoWrap?: boolean;
    nowrap?: boolean;
    className?: string;
    classes?: string;
    /**
     * @deprecated
     */
    containerClasses?: string;
    containerClassName?: string;
    figureClassName?: string;
    captionClass?: string;
    captionClassName?: string;
    imageSrc?: string;
    imageSource?: string;
    alternateImage?: string;
    src?: string;
    url?: string;
    alt?: string;
    caption?: string;
    text?: string;
    captionText?: string;
    labelText?: string;
    isImage?: boolean;
}
export interface ImageState {
    isLoaded: boolean;
}