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

12
components/lib/icon/starfill/index.d.ts vendored Normal file
View file

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