UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

22 lines (20 loc) 534 B
import { SvelteComponentTyped } from 'svelte/internal' import type { Component } from '../../component' import type { Loading, Speed } from '../../variations' interface LoaderProps extends Component { text?: boolean intermediat?: boolean active?: boolean disabled?: boolean animationStyle?: Loading speed?: Speed inline?: false center?: false inverted?: false icon?: boolean } /** * Vomantic Loader */ declare class Loader extends SvelteComponentTyped<LoaderProps> {} export default Loader