import { Meta, StoryObj } from '@storybook/react'; import { LabelTokenTypography } from '.'; export default { args: {}, component: LabelTokenTypography, title: 'Components/LabelTokenTypography', } as Meta; export const Default: StoryObj = { args: { colorToken: 'white100', label: 'Additional Cashflow', labelColorToken: 'white400', labelTypographyToken: 'bodyXSmallMedium', prefixColorToken: 'white950', prefixToken: '+', token: ' USDC', tokenColorToken: 'white950', typographyToken: 'bodyMediumMedium', value: '0.00', }, }; export const WithRangeValues: StoryObj = { args: { colorToken: 'white100', label: 'Additional Cashflow', labelColorToken: 'white400', labelTypographyToken: 'bodyXSmallMedium', prefixColorToken: 'white950', prefixToken: '+', token: ' USDC', tokenColorToken: 'white950', typographyToken: 'bodyMediumMedium', value: '0.00', value2: '4.00', }, }; export const WithRangeValuesDifferentColors: StoryObj = { args: { colorToken: 'primary500', colorToken2: 'error500', label: 'Additional Cashflow', labelColorToken: 'white400', labelTypographyToken: 'bodyXSmallMedium', prefixColorToken: 'white950', prefixToken: '+', slashColorToken: 'white100', token: ' USDC', tokenColorToken: 'primary700', tokenColorToken2: 'error700', typographyToken: 'bodyMediumMedium', value: '0.00', value2: '4.00', }, }; export const WithTooltip: StoryObj = { args: { colorToken: 'white100', label: 'Additional Cashflow', labelColorToken: 'white400', labelTypographyToken: 'bodyXSmallMedium', token: ' USDC', tokenColorToken: 'white950', tooltip: 'We support a nice tooltip as well!', typographyToken: 'bodyMediumMedium', value: '+0.00', }, }; export const WithAttentionIndicator: StoryObj = { args: { attentionIndicatorColorToken: 'error100', colorToken: 'white100', label: 'Additional Cashflow', labelColorToken: 'white400', labelTypographyToken: 'bodyXSmallMedium', token: ' USDC', tokenColorToken: 'white950', tooltip: 'We support a nice tooltip as well!', typographyToken: 'bodyMediumMedium', value: '+0.00', }, };