| 12345678910111213141516171819202122232425 |
- export default {
- clearIndicator: () => ({}),
- container: () => ({}),
- control: () => ({}),
- dropdownIndicator: () => ({}),
- group: () => ({}),
- groupHeading: () => ({}),
- indicatorsContainer: () => ({}),
- indicatorSeparator: () => ({}),
- input: () => ({}),
- loadingIndicator: () => ({}),
- loadingMessage: () => ({}),
- menu: () => ({}),
- menuList: ({ maxHeight }: { maxHeight: number }) => ({
- maxHeight,
- }),
- multiValue: () => ({}),
- multiValueLabel: () => ({}),
- multiValueRemove: () => ({}),
- noOptionsMessage: () => ({}),
- option: () => ({}),
- placeholder: () => ({}),
- singleValue: () => ({}),
- valueContainer: () => ({}),
- };
|