@achs/webkit
Version:
Este paquete proporciona un conjunto de componentes de UI para su uso en aplicaciones web de ACHS (Asociación Chilena de Seguridad). Está construido con React, TypeScript y Vite.
13 lines (12 loc) • 347 B
TypeScript
import { default as React } from 'react';
export interface ImagePlaceholderProps {
src?: string;
alt?: string;
device?: 'mobile' | 'tablet' | 'desktop';
customSize?: {
width?: string;
height?: string;
};
}
export declare const ImagePlaceholder: React.FC<ImagePlaceholderProps>;
export default ImagePlaceholder;