svantic
Version:
A set of Fomantic-UI components for Svelte framework
21 lines (19 loc) • 511 B
TypeScript
import { SvelteComponentTyped } from 'svelte/internal'
import type { Component } from '../../component'
import { Align, Attach, Color, Size } from '../../variations'
interface LinkProps extends Component {
attached?: Attach
aligned?: Align
color?: Color
size?: Size
basic?: boolean
horizontal?: boolean
floating?: boolean
circular?: boolean
inverted?: boolean
on?: {}
}
/**
* Vomantic Label Link
*/
export default class Link extends SvelteComponentTyped<LinkProps> {}