UNPKG

wass-rct-ui

Version:

A lightweight and customizable WASS Rct UI component library for modern web applications.

25 lines (24 loc) 736 B
/** * @file wass-rct-ui * @description A reusable ImageView component that supports dynamic styles and classes. * @author Web Apps Software Solutions * @copyright © 2024 Web Apps Software Solutions. All rights reserved. * @license MIT * @repository https://github.com/WebAppSoftNK/wass-rct-ui */ import * as React from "react"; export interface ImageViewProps { isRounded?: boolean; className?: string; link?: string; alt?: string; placeholder?: string; squareHeight?: number; squareWidth?: number; ratioHeight?: number; ratioWidth?: number; customWidth?: number | string; customHeight?: number | string; } declare const ImageView: React.FC<ImageViewProps>; export default ImageView;