99185e2d8f
* Remove the newline after .hbs copyright headers * Trying with the whitespace control char
19 lines
635 B
Handlebars
19 lines
635 B
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
SPDX-License-Identifier: MPL-2.0
|
|
~}}
|
|
|
|
<defs>
|
|
<linearGradient x1="0" x2="0" y1="0" y2="1" class="{{this.colorClass}}" id="{{this.fillId}}">
|
|
<stop class="start" offset="0%" />
|
|
<stop class="end" offset="100%" />
|
|
</linearGradient>
|
|
<clipPath id="{{this.maskId}}">
|
|
<path class="fill" d="{{this.area}}" />
|
|
</clipPath>
|
|
</defs>
|
|
<g data-test-chart-area class="area {{this.colorClass}}" ...attributes>
|
|
<path class="line" d="{{this.line}}" />
|
|
<rect class="fill" x="0" y="0" width="{{@width}}" height="{{@height}}" fill="url(#{{this.fillId}})" clip-path="url(#{{this.maskId}})" />
|
|
</g>
|