move files

This commit is contained in:
Eric Fennis
2021-04-14 23:43:47 +02:00
parent f2582af4a3
commit 0922e72e3d
4 changed files with 5 additions and 5 deletions
@@ -1,4 +1,4 @@
import { IconData } from './icons/types'
import { IconData } from '../icons/types'
/**
* Creates a new SVGElement from icon node
@@ -1,7 +1,7 @@
import { Component, ElementRef, Input, Inject, ChangeDetectorRef, OnChanges, SimpleChanges } from '@angular/core';
import { Icons } from './icons.provider';
import { IconData } from '../icons/types';
import { createElement } from '../create-element';
import { createElement } from '../helpers/create-element';
@Component({
selector: 'lucide-angular, lucide-icon, i-lucide, span-lucide',
@@ -7,6 +7,7 @@ import { IconData } from '../icons/types';
declarations: [LucideAngularComponent],
exports: [LucideAngularComponent]
})
export class LucideAngularModule {
constructor(@Optional() private icons: Icons) {
if (!this.icons) {
+2 -3
View File
@@ -1,8 +1,7 @@
import * as icons from './icons';
export * from './lib/lucide-angular.component';
export * from './lib/lucide-angular.module';
import * as icons from './icons';
export * from './icons';
export * from './create-element';
export * from './helpers/create-element';
export { icons };