ResetStyles.tsx 657 B

12345678910111213141516171819202122232425
  1. export default {
  2. clearIndicator: () => ({}),
  3. container: () => ({}),
  4. control: () => ({}),
  5. dropdownIndicator: () => ({}),
  6. group: () => ({}),
  7. groupHeading: () => ({}),
  8. indicatorsContainer: () => ({}),
  9. indicatorSeparator: () => ({}),
  10. input: () => ({}),
  11. loadingIndicator: () => ({}),
  12. loadingMessage: () => ({}),
  13. menu: () => ({}),
  14. menuList: ({ maxHeight }: { maxHeight: number }) => ({
  15. maxHeight,
  16. }),
  17. multiValue: () => ({}),
  18. multiValueLabel: () => ({}),
  19. multiValueRemove: () => ({}),
  20. noOptionsMessage: () => ({}),
  21. option: () => ({}),
  22. placeholder: () => ({}),
  23. singleValue: () => ({}),
  24. valueContainer: () => ({}),
  25. };