import React from 'react'; import { Select } from 'antd'; import { SocialHandleDropdownItem } from '../../types/config-section'; import { NEXT_PUBLIC_API_HOST } from '../../utils/apis'; import { OTHER_SOCIAL_HANDLE_OPTION } from '../../utils/config-constants'; interface DropdownProps { iconList: SocialHandleDropdownItem[]; selectedOption: string; onSelected: any; } export default function SocialDropdown({ iconList, selectedOption, onSelected }: DropdownProps) { const handleSelected = (value: string) => { if (onSelected) { onSelected(value); } }; const inititalSelected = selectedOption === '' ? null : selectedOption; return (

If you are looking for a platform name not on this list, please select Other and type in your own name. A logo will not be provided.

Social Platform
); }