UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

15 lines (13 loc) 389 B
import { SvelteComponentTyped} from 'svelte/internal'; import { Style } from '../../style'; import { Component } from '../../component'; import { Wide } from '../../variations'; interface StatisticProps extends Component { column?:Wide } /** * Vomantic Statistics */ declare class Statistics extends SvelteComponentTyped<StatisticProps> { } export default Statistics;