@icons-pack/svelte-simple-icons
Version:
This package provides the Simple Icons packaged as a set of Svelte components.
28 lines (27 loc) • 805 B
TypeScript
/** @typedef {typeof __propDef.props} SiKongProps */
/** @typedef {typeof __propDef.events} SiKongEvents */
/** @typedef {typeof __propDef.slots} SiKongSlots */
export default class SiKong extends SvelteComponent<{
color?: string | undefined;
size?: number | undefined;
title?: string | undefined;
}, {
[evt: string]: CustomEvent<any>;
}, {}> {
}
export type SiKongProps = typeof __propDef.props;
export type SiKongEvents = typeof __propDef.events;
export type SiKongSlots = typeof __propDef.slots;
import { SvelteComponent } from "svelte";
declare const __propDef: {
props: {
color?: string | undefined;
size?: number | undefined;
title?: string | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export {};