UNPKG

tanuki-ui

Version:

HTML-first React component library with semantic elements, multi-OS themes, and production-ready visual node editor

18 lines (17 loc) 431 B
import * as React from "react"; export interface MediaPreviewProps { src: string; alt?: string; maxWidth?: number; maxHeight?: number; minWidth?: number; minHeight?: number; aspectRatioRange?: { min: number; max: number; }; onLoad?: () => void; onError?: () => void; className?: string; } export declare const MediaPreview: React.NamedExoticComponent<MediaPreviewProps>;