import {PLATFORM_LABELS, SITE_ORDER} from 'common/socials' import {SocialIcon} from '../user/social' import {SearchableSelect} from './searchable-select' const suggestions = SITE_ORDER.map((platform) => { return { id: platform, label: PLATFORM_LABELS[platform], icon: , } }) export function PlatformSelect(props: { value: string onChange: (value: string) => void className?: string }) { return ( ) }