1import { Price } from '@proton/components'; 2 3import { getTitle } from '../../helpers/title'; 4import mdx from './Price.mdx'; 5 6export default { 7 component: Price, 8 title: getTitle(__filename, false), 9 parameters: { 10 docs: { 11 page: mdx, 12 }, 13 }, 14}; 1516export const Basic = () => ( 17 <> 18 <ul> 19 <li> 20 <Price currency="EUR">{6699}</Price> 21 </li> 22 <li> 23 <Price currency="CHF">{7699}</Price> 24 </li> 25 <li> 26 <Price currency="USD">{8699}</Price> 27 </li> 28 </ul> 29 </> 30);