@brewermap/toolbar

Angular Material based Toolbar. This component is a wrapper for the mat-toolbar component

Usage no npm install needed!

<script type="module">
  import brewermapToolbar from 'https://cdn.skypack.dev/@brewermap/toolbar';
</script>

README

Brewer Map Toolbar

Angular Material based Toolbar. This component is a wrapper for the mat-toolbar component

Setup

Add the Brewer Map Toolbar module to the app

import { ToolbarModule } from '@brewermap/toolbar';
 
@NgModule({
  imports: [
    CommonModule,
    ToolbarModule
  ]
})

Usage

<bm-toolbar title="This is the Title">
    <div bm-toolbar-left>
        <!--Content for the left side-->
    </div>
    <div bm-toolbar-right>
        <!--Content for the right side-->
    </div>
</bm-toolbar>

Inputs

Name Type
title string

Outputs

N/A

This library was generated with Angular CLI version 10.0.2.