13 lines
297 B
TypeScript
13 lines
297 B
TypeScript
import { GlobalComponentConstructor } from '../../ts-helpers';
|
|
import { Icon } from '../index';
|
|
|
|
declare class BarsIcon extends Icon {}
|
|
|
|
declare module '@vue/runtime-core' {
|
|
interface GlobalComponents {
|
|
BarsIcon: GlobalComponentConstructor<BarsIcon>;
|
|
}
|
|
}
|
|
|
|
export default BarsIcon;
|