import React, { FC } from 'react'; import { Select } from 'antd'; import { SocialHandleDropdownItem } from '../../types/config-section'; import { OTHER_SOCIAL_HANDLE_OPTION } from '../../utils/config-constants'; export type DropdownProps = { iconList: SocialHandleDropdownItem[]; selectedOption: string; onSelected: any; }; export const SocialDropdown: FC = ({ iconList, selectedOption, onSelected }) => { 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
); };