UNPKG

ipsos-components

Version:

Material Design components for Angular

20 lines (17 loc) 622 B
/** * @license * Copyright Google LLC All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://angular.io/license */ import {NgModule} from '@angular/core'; import {MatCommonModule} from '@angular/material/core'; import {PlatformModule} from '@angular/cdk/platform'; import {MatToolbar, MatToolbarRow} from './toolbar'; @NgModule({ imports: [MatCommonModule, PlatformModule], exports: [MatToolbar, MatToolbarRow, MatCommonModule], declarations: [MatToolbar, MatToolbarRow], }) export class MatToolbarModule {}