Header
pg-header
Importing
First import it to your app module or any submodule as you wish
import { HeaderComponent } from './@pages/components/header/header.component';
@NgModule({
declarations: [HeaderComponent,...]
})
export class AppModule(){}
How to use
<pg-header [boxed]="_boxed">
<!-- YOUR HEADER CONTENT GOES HERE -->
</pg-header>
API
Property
Description
Type
Default
boxed
Wraps content with a container div
boolean
false
Last updated