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 / dist / components / atoms / Image / renderProps.d.ts
Size: Mime:
import { ImageProps } from './typings';
/**
 * Rendering a Image tag with inside the div tag
 */
declare function renderWrap(props: ImageProps): JSX.Element;
/**
 * rendering the image tag
 */
declare function renderImageAsSemanticTag(props: ImageProps): JSX.Element;
/**
 * Rendering as a Background Image
 */
declare function renderImageAsBackground(props: ImageProps): JSX.Element;
/**
 * Main rendering method of the Image Component
 */
declare function renderImage(props: ImageProps): JSX.Element;
export { renderWrap, renderImageAsSemanticTag, renderImageAsBackground, renderImage, };