svantic
Version:
A set of Fomantic-UI components for Svelte framework
14 lines (11 loc) • 384 B
TypeScript
import { SvelteComponentTyped} from 'svelte/internal';
import type { Component } from '../../component';
declare type Type = 'raised' | 'piled' | 'vertical' | 'horizontal stackable' | 'horizontal';
interface SegmentsProps extends Component {
type?: Type;
}
/**
* Vomantic Segments
*/
export default class Segments extends SvelteComponentTyped<SegmentsProps> {
}