UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

29 lines (28 loc) 709 B
import { SvelteComponentTyped} from 'svelte/internal'; import { Style } from '../../style'; import { Component } from '../../component'; interface StickyProps extends Component { class?: string; active?: boolean; disabled?: boolean; fluid?: boolean; circular?: boolean; loading?: boolean; primary?: boolean; secondary?: boolean; compact?: boolean; basic?: boolean; toggle?: boolean; positive?: boolean; negative?: boolean; tertiary?: boolean; inverted?: boolean; icon?: boolean; style?: Style; } /** * Vomantic Sticky */ declare class Sticky extends SvelteComponentTyped<StickyProps> { } export default Sticky;