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 { static Header: new () => Header static Image: new () => Image static Paragraph: new () => Paragraph static Line: new () => Line }