This package includes trial watermark webcomponent, that is used by all Ignite UI Web Frameworks.
npm install igniteui-trial-watermark#### First Steps
##### Install
In the root folder of the project install the node_modules:
```
npm install
##### Build
In the root folder of the project run:
``
npm run buildindex.js
* After the build the completed watermark webcomponent will be in file in the dist folder.
The build is necessary for the styles to be applied to the webcomponent
#### Adding Trial Watermark Webcomponent to Existing Project
Include the igniteui-trial-watermark packages to your project:
``
npm install igniteui-trial-watermark
##### Adding Trial Watermark Webcomponent to a template:
First we need to import the igniteui-trial-watermark to our component and register it:
`ts`
import { IgcTrialWatermark } from 'igniteui-trial-watermark';
IgcTrialWatermark.register();
Then simply use it by it's tag:
`html``
...
...