UNPKG

@nuxt/ui

Version:

A UI Library for Modern Web Apps, powered by Vue & Tailwind CSS.

21 lines (20 loc) 874 B
import type { AppConfig } from '@nuxt/schema'; import type { ComponentConfig } from '../../types/tv'; import theme from '#build/ui/prose/img'; type ProseImg = ComponentConfig<typeof theme, AppConfig, 'img', 'ui.prose'>; export interface ProseImgProps { src: string; alt: string; width?: string | number; height?: string | number; class?: any; /** * Zoom image on click * @defaultValue true */ zoom?: boolean; ui?: ProseImg['slots']; } declare const __VLS_export: import("vue").DefineComponent<ProseImgProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ProseImgProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;