1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-01 21:57:06 +01:00
metamask-extension/ui/components/app/gas-customization/gas-slider/gas-slider.stories.js
George Marshall 5592687df1
Updating design tokens package and shadow values with new tokens (#15264)
* Updating design tokens v1.8 and shadows

* Adding missing stories

* Some fixes and updates to css and stories

* removing unneeded story

* Fixing story order
2022-07-21 15:43:31 -07:00

35 lines
570 B
JavaScript

import React from 'react';
import GasSlider from '.';
export default {
title: 'Components/App/GasCustomization/GasSlider',
id: __filename,
argTypes: {
onChange: {
action: 'onChange',
},
lowLabel: {
control: 'text',
},
highLabel: {
control: 'text',
},
value: {
control: 'number',
},
step: {
control: 'number',
},
max: {
control: 'number',
},
min: {
control: 'number',
},
},
};
export const DefaultStory = () => <GasSlider />;
DefaultStory.storyName = 'Default';