svantic
Version:
A set of Fomantic-UI components for Svelte framework
15 lines (13 loc) • 388 B
TypeScript
import type { Attach, Color } from 'src/variations'
import { SvelteComponentTyped } from 'svelte/internal'
import type { Component } from '../../component'
interface RibbonProps extends Component {
icon?: boolean
right?: boolean
icon?: Attach
color?: Color
}
/**
* Vomantic Label Ribbon
*/
export default class Ribbon extends SvelteComponentTyped<RibbonProps> {}