@igloo-ui/metric
TypeScript icon, indicating that this package has built-in type declarations

0.4.0 • Public • Published

Metric

A metric component is a button that visually represents a specific metric or measurement. It provides a concise and interactive way for users to access important information or track key performance indicators.

Installation

To install @igloo-ui/metric in your project, you will need to run the following command using npm:

npm install @igloo-ui/metric

If you prefer Yarn, use the following command instead:

yarn add @igloo-ui/metric

Usage

Then to use the component in your code just import it!

import Metric from '@igloo-ui/metric';
import Wellness from '@igloo-ui/icons/dist/Wellness';

const [selected, setSelected] = React.useState(false);
const handleOnPress = () => {
  setSelected(!selected);
};

<Metric
  value={20}
  variation={3}
  label="Metric Name"
  icon={<Wellness size="medium" />}
  onPress={handleOnPress}
  appearance={selected ? 'selected' : 'positive'}
/>;

Readme

Keywords

none

Package Sidebar

Install

npm i @igloo-ui/metric

Weekly Downloads

179

Version

0.4.0

License

Apache-2.0

Unpacked Size

1.77 MB

Total Files

9

Last publish

Collaborators

  • infra.admin
  • franckgaudin