UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

13 lines (11 loc) 307 B
import { Component } from '../../component' import { SvelteComponentTyped } from 'svelte' interface ImageProps extends Component { header?: boolean square?: boolean } /** * Vomantic Placeholder Image */ declare class Image extends SvelteComponentTyped<ImageProps> {} export default Image