UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

26 lines 680 B
import { SvelteComponentTyped} from 'svelte/internal'; import { Style } from '../../style'; import { Component } from '../../component'; interface TextProps 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 Text */ export default class Text extends SvelteComponentTyped<TextProps> {}