feat: more work done

This commit is contained in:
Alexander Daichendt 2022-07-26 08:30:47 +02:00
parent 8377892747
commit ab60b4baf7
21 changed files with 160 additions and 21 deletions

14
modules.d.ts vendored Normal file
View file

@ -0,0 +1,14 @@
declare module 'mdi-svelte' {
import { SvelteComponentTyped } from 'svelte';
export interface IconProps {
path: string;
size?: number | string;
color?: string;
flip?: boolean | string;
rotate?: number;
spin?: number | boolean;
title?: string;
}
export default class Icon extends SvelteComponentTyped<IconProps> {}
}