Fixed #3829 - Add new Icon components

This commit is contained in:
mertsincan 2023-03-31 22:45:03 +01:00
parent 2817a3268e
commit 01c151b799
139 changed files with 2050 additions and 0 deletions

View file

@ -0,0 +1,12 @@
import { GlobalComponentConstructor } from '../../ts-helpers';
import { Icon } from '../index';
declare class WindowMinimizeIcon extends Icon {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
WindowMinimizeIcon: GlobalComponentConstructor<WindowMinimizeIcon>;
}
}
export default WindowMinimizeIcon;