svantic
Version:
A set of Fomantic-UI components for Svelte framework
14 lines (12 loc) • 333 B
TypeScript
import { SvelteComponentTyped} from 'svelte/internal';
import type { Size } from '../../variations';
import type { Component } from '../../component';
interface IconProps extends Component {
size?: Size;
}
/**
* Vomantic Icon
*/
declare class Icon extends SvelteComponentTyped<IconProps> {
}
export default Icon;