@fluid-topics/ft-trend
v1.1.82
Published
Single stat value with a trend
Downloads
1,347
Readme
A trend component that displays the evolution between two values.
Install
npm install @fluid-topics/ft-trend
yarn add @fluid-topics/ft-trend
Usage
import { html } from "lit"
import "@fluid-topics/ft-trend"
function render() {
return html`
<ft-trend
title="Trend",
currentValue="3",
previousValue="2">
</ft-trend>
`
}