UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

12 lines (10 loc) 307 B
import { Component } from '../../component' import { SvelteComponentTyped } from 'svelte' type State = 'visible' | 'hidden' interface ContentProps extends Component { state?: State } /** * Vomantic Reveal Content */ export default class Content extends SvelteComponentTyped<ContentProps> {}