UNPKG

@sveltestrap/sveltestrap

Version:

Bootstrap components for Svelte

17 lines (12 loc) 407 B
import { SvelteComponent } from 'svelte'; import { HTMLImgAttributes } from 'svelte/elements'; export interface ImageProps extends HTMLImgAttributes { alt?: string; figure?: boolean; fluid?: boolean; theme?: string; thumbnail?: boolean; } export interface ImageEvents {} export interface ImageSlots {} export default class Image extends SvelteComponent<ImageProps, ImageEvents, ImageSlots> {}