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