svantic
Version:
A set of Fomantic-UI components for Svelte framework
30 lines (27 loc) • 694 B
TypeScript
import { SvelteComponentTyped} from 'svelte/internal';
import { Style } from '../../style';
import { Component } from '../../component';
interface SideProps 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;
}
/**
* Vomantic Shape Side
*/
export default class Side extends SvelteComponentTyped<SideProps> {
}