UNPKG

@pagamio/frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

9 lines (8 loc) 209 B
import React from 'react'; type ImageComponentProps = { src: string; alt: string; className?: string; }; declare const ImageComponent: React.FC<ImageComponentProps>; export default ImageComponent;