Merge pull request #2678 from SDA-SE/feat/gauge-storybook

Add GaugeProgress to storybook
This commit is contained in:
Ben Lambert
2020-09-30 15:49:08 +02:00
committed by GitHub
@@ -0,0 +1,55 @@
/*
* Copyright 2020 Spotify AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import React from 'react';
import { GaugeProgress } from './GaugeProgress';
const containerStyle = { width: 300 };
export default {
title: 'GaugeProgress',
component: GaugeProgress,
};
export const Default = () => (
<div style={containerStyle}>
<GaugeProgress value={0.8} />
</div>
);
export const MediumProgress = () => (
<div style={containerStyle}>
<GaugeProgress value={0.5} />
</div>
);
export const LowProgress = () => (
<div style={containerStyle}>
<GaugeProgress value={0.2} />
</div>
);
export const InverseLowProgress = () => (
<div style={containerStyle}>
<GaugeProgress value={0.2} inverse />
</div>
);
export const AbsoluteProgress = () => (
<div style={containerStyle}>
<GaugeProgress value={89.2} fractional={false} unit="m/s" />
</div>
);