data.ts 562 B

123456789101112131415161718192021222324252627282930313233343536
  1. const dataset = (t: (key: string) => string): Record<string, any> => ({
  2. scaleOptions: [
  3. {
  4. key: 'fit',
  5. content: t('fit'),
  6. child: 'fit',
  7. },
  8. {
  9. key: '50',
  10. content: '50 %',
  11. child: 50,
  12. },
  13. {
  14. key: '100',
  15. content: '100 %',
  16. child: 100,
  17. },
  18. {
  19. key: '150',
  20. content: '150 %',
  21. child: 150,
  22. },
  23. {
  24. key: '200',
  25. content: '200 %',
  26. child: 200,
  27. },
  28. {
  29. key: '250',
  30. content: '250 %',
  31. child: 250,
  32. },
  33. ],
  34. });
  35. export default dataset;