import { styled } from '@mui/material'; import Select from 'antd/es/select'; import 'antd/es/select/style/index'; interface SelectPickerProps { value: string[]; onChange: (value: string[]) => void; className?: string; } export const SelectPickerCom = ({ value, onChange, className }: SelectPickerProps) => { return