vant
Version:
Mobile UI Components built on Vue
13 lines (12 loc) • 446 B
TypeScript
import type { CSSProperties } from 'vue';
export type ImageFit = CSSProperties['objectFit'];
export type ImagePosition = CSSProperties['objectPosition'];
export type ImageThemeVars = {
imagePlaceholderTextColor?: string;
imagePlaceholderFontSize?: string;
imagePlaceholderBackground?: string;
imageLoadingIconSize?: string;
imageLoadingIconColor?: string;
imageErrorIconSize?: string;
imageErrorIconColor?: string;
};