@icons-pack/svelte-simple-icons
Version:
This package provides the Simple Icons packaged as a set of Svelte components.
16 lines (15 loc) • 414 B
TypeScript
export default SiCoder;
type SiCoder = {
$on?(type: string, callback: (e: any) => void): () => void;
$set?(props: Partial<$$ComponentProps>): void;
};
declare const SiCoder: import("svelte").Component<{
color?: string;
size?: number;
title?: string;
} & Record<string, any>, {}, "">;
type $$ComponentProps = {
color?: string;
size?: number;
title?: string;
} & Record<string, any>;