UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

27 lines (26 loc) 657 B
import { SvelteComponentTyped} from 'svelte/internal'; import { Align, Float, Size } from '../../variations'; import { Component } from '../../component'; interface ImageProps extends Component { aligned?: Align; floated?: Float; size?: Size; src?: string; alt?: string; hidden?: boolean; disabled?: boolean; avatar?: boolean; bordered?: boolean; fluid?: boolean; round?: boolean; circular?: boolean; middle?: boolean; centered?: boolean; space?: boolean; } /** * Vomantic Image */ declare class Image extends SvelteComponentTyped<ImageProps> { } export default Image;