nextuiq
Version:
NextUIQ is a modern, lightweight, and developer-friendly UI component library for React and Next.js. Built with TypeScript and Tailwind CSS, it offers customizable, accessible, and performance-optimized components with built-in dark mode, theme customizat
9 lines (8 loc) • 419 B
TypeScript
import { default as React } from 'react';
export interface ResponsiveImageProps extends React.ImgHTMLAttributes<HTMLImageElement> {
fallback?: string;
aspectRatio?: string;
containerClassName?: string;
objectFit?: 'contain' | 'cover' | 'fill' | 'none' | 'scale-down';
}
export declare const ResponsiveImage: React.ForwardRefExoticComponent<ResponsiveImageProps & React.RefAttributes<HTMLImageElement>>;