'How to add material toolbar in angular application?

I tried to import MatToolbar but it is not working

import { MatToolbar } from '@angular/material/toolbar';



Solution 1:[1]

Use need to import MatToolbarModule

import { MatToolbarModule } from '@angular/material/toolbar';

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Srikanth Kotnala