UNPKG

svantic

Version:

A set of Fomantic-UI components for Svelte framework

20 lines (17 loc) 505 B
import type { Icons } from 'src/elements/icon/icon'; import { SvelteComponentTyped} from 'svelte/internal'; import type { Component } from '../../component'; interface ItemProps extends Component { active?: boolean; horizontally?: boolean; fitted?: boolean | "vertically" | "horizontally"; icon?: boolean | Icons; href?: string content?: string } /** * @description */ declare class Item extends SvelteComponentTyped<ItemProps> { } export default Item;