import React, { useState } from 'react'
import { Theme } from '@/styles';
import Select, { components, DropdownIndicatorProps, PropsValue } from 'react-select';
import { TbCaretUpDownFilled } from 'react-icons/tb';
const DropdownIndicator = (props: DropdownIndicatorProps<true>) => (
<components.DropdownIndicator {...props}>
<TbCaretUpDownFilled />
</components.DropdownIndicator>
);
type OptionType = {
value: string;
label: string;
};
…
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)