data.ts 655 B

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