UNPKG

@sveltestrap/sveltestrap

Version:

Bootstrap components for Svelte

14 lines (9 loc) 362 B
import { SvelteComponent } from 'svelte'; import { HTMLImgAttributes } from 'svelte/elements'; export interface CardImgProps extends HTMLImgAttributes { bottom?: boolean; top?: boolean; } export interface CardImgEvents {} export interface CardImgSlots {} export default class CardImg extends SvelteComponent<CardImgProps, CardImgEvents, CardImgSlots> {}