feat: moveup fab

This commit is contained in:
Alexander Daichendt 2022-07-26 11:03:31 +02:00
parent 71ea19d6cb
commit 94ca2a8a2a
3 changed files with 40 additions and 0 deletions

14
src/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> {}
}