UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

31 lines (30 loc) 755 B
import { SvelteComponentTyped} from 'svelte/internal'; import { Style } from '../../style'; import { Component } from '../../component'; import Side from './side'; interface ShapeProps extends Component { class?: string; active?: boolean; disabled?: boolean; fluid?: boolean; circular?: boolean; loading?: boolean; primary?: boolean; secondary?: boolean; compact?: boolean; basic?: boolean; toggle?: boolean; positive?: boolean; negative?: boolean; tertiary?: boolean; inverted?: boolean; icon?: boolean; style?: Style; } /** * Shape */ declare class Shape extends SvelteComponentTyped<ShapeProps> { static Side: new ()=> Side } export default Shape;