move files
This commit is contained in:
+1
-1
@@ -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) {
|
||||
|
||||
@@ -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 };
|
||||
|
||||
Reference in New Issue
Block a user