1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/components/app/user-preferenced-currency-display/user-preferenced-currency-display.stories.js

65 lines
1.2 KiB
JavaScript

import React from 'react';
import { PRIMARY, SECONDARY } from '../../../helpers/constants/common';
import { EtherDenomination } from '../../../../shared/constants/common';
import UserPreferencedCurrencyDisplay from '.';
export default {
title: 'Components/App/UserPreferencedCurrencyDisplay',
argTypes: {
className: {
control: 'text',
},
'data-testid': {
control: 'text',
},
prefix: {
control: 'text',
},
value: {
control: 'text',
},
numberOfDecimals: {
control: 'number',
},
hideLabel: {
control: 'boolean',
},
hideTitle: {
control: 'boolean',
},
style: {
control: 'object',
},
showEthLogo: {
control: 'boolean',
},
ethLogoHeight: {
control: 'number',
},
type: {
control: 'select',
options: [PRIMARY, SECONDARY],
},
ethNumberOfDecimals: {
control: 'number',
},
fiatNumberOfDecimals: {
control: 'number',
},
showFiat: {
control: 'boolean',
},
},
args: {
type: EtherDenomination.ETH,
},
};
export const DefaultStory = (args) => (
<UserPreferencedCurrencyDisplay {...args} />
);
DefaultStory.storyName = 'Default';