import React from 'react' import { type Meta } from '@storybook/react-vite' import { currencyFormat } from '../../services/HelperServiceTyped' import { DocsTemplate } from '../../../.storybook' export const Example = (args: { /** The value that needs to be converted. */ value: number /** Number of decimal places. If not set, this will default to 2. */ toFixed?: number }): React.JSX.Element => { const { value, toFixed } = args return <>{currencyFormat(value, toFixed)} } Example.storyName = 'currencyFormat' Example.args = { value: 12345, toFixed: 1, } export default { title: '[Deprecated]/Helper Functions/currencyFormat', component: Example, parameters: { viewMode: 'docs', previewTabs: { canvas: { hidden: true }, }, docs: { page: () => ( <> currencyFormat is used when you need to format a number. It is meant to be used for currencies, but has{' '} no currency options built into this function . } infoBullets={[ `This function is not helpful and is misleading as it does not have any currency logic associated with it.`, `We need to have this function have the ability to format the value with currency code and symbol.`, ]} deprecated /> ), }, }, } as Meta