1 | import type { CSSProperties } from 'vue';
|
2 | export type ImageFit = CSSProperties['objectFit'];
|
3 | export type ImagePosition = CSSProperties['objectPosition'];
|
4 | export type ImageThemeVars = {
|
5 | imagePlaceholderTextColor?: string;
|
6 | imagePlaceholderFontSize?: string;
|
7 | imagePlaceholderBackground?: string;
|
8 | imageLoadingIconSize?: string;
|
9 | imageLoadingIconColor?: string;
|
10 | imageErrorIconSize?: string;
|
11 | imageErrorIconColor?: string;
|
12 | };
|