import React from 'react' import {Select, SelectProps} from "antd"; import "./Select.scss" interface StarshipSelectProps { options: { label: string, value: string | number | undefined | null icon?: React.ReactNode }[] } const StarshipSelect = (props: Omit & StarshipSelectProps) => { const {className, dropdownClassName,options, ...restProps} = props; return ( ) } export default StarshipSelect