UNPKG

@opencloud-eu/design-system

Version:

OpenCloud Design System is used to design OpenCloud UI components

22 lines (21 loc) 735 B
export interface Props { /** * @docs The image source URL. */ src: string; /** * @docs The image alt text. Should be provided for screen readers. */ alt?: string; /** * @docs The loading type of the image. * @default eager */ loadingType?: 'lazy' | 'eager'; /** * @docs The image title attribute. */ title?: string; } declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLImageElement>; export default _default;