UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

20 lines (18 loc) 552 B
import { Component } from '../../component' import { SvelteComponentTyped } from 'svelte' import Header from './header' import Paragraph from './paragraph' import Image from './image' import Line from './line' interface PlaceholderProps extends Component { inverted?: boolean } /** * Vomantic Placeholder */ export default class Placeholder extends SvelteComponentTyped<PlaceholderProps> { static Header: new () => Header static Image: new () => Image static Paragraph: new () => Paragraph static Line: new () => Line }