UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

11 lines (9 loc) 294 B
import { Component } from '../../component'; import { SvelteComponentTyped} from 'svelte'; interface ParagraphProps extends Component { inverted?: boolean; } /** * Vomantic Placeholder Paragraph */ export default class Paragraph extends SvelteComponentTyped<ParagraphProps> {}