2021-01-11 16:40:51 +01:00
|
|
|
import {NgModule} from '@angular/core';
|
2022-08-29 13:04:20 +02:00
|
|
|
import {SharedModule} from '../../../openaireLibrary/shared/shared.module';
|
2021-01-11 16:40:51 +01:00
|
|
|
import {SearchInputComponent} from './search-input.component';
|
|
|
|
import {IconsModule} from '../../utils/icons/icons.module';
|
2022-04-06 09:35:10 +02:00
|
|
|
import {InputModule} from "../input/input.module";
|
2022-04-13 12:00:40 +02:00
|
|
|
import {ClickModule} from "../../utils/click/click.module";
|
2021-01-11 16:40:51 +01:00
|
|
|
|
|
|
|
@NgModule({
|
2023-08-01 10:40:55 +02:00
|
|
|
imports: [SharedModule, IconsModule, InputModule, ClickModule],
|
2021-01-11 16:40:51 +01:00
|
|
|
declarations: [SearchInputComponent],
|
|
|
|
exports: [SearchInputComponent]
|
|
|
|
})
|
2022-04-04 10:06:34 +02:00
|
|
|
export class SearchInputModule {}
|