website-templates
Version:
A React component for an Website Templates styled with Tailwind CSS
16 lines (15 loc) • 579 B
TypeScript
import { StaticImageData } from "next/image";
type Props = {
fileName?: string;
className?: string;
height?: number;
width?: number;
type?: "avatar";
isLoading?: boolean;
fallbackImage?: StaticImageData;
};
export declare const mediaApi: Readonly<{
GET_PRESIGNED_URL: "https://staging.keycloak.dreamemirates.com/api/v1/media-svc/image/get-presigned-url";
}>;
declare const CommonImageShow: ({ fileName, className, height, width, type, isLoading, fallbackImage, }: Props) => import("react/jsx-runtime").JSX.Element;
export default CommonImageShow;