import React from 'react'; import { Button } from '../Button'; import { DropDown, DropDownItemProps } from '../DropDown'; export interface SocialShareProps { title: string; link: string; } export const SocialShare = ({ title, link }: SocialShareProps) => { const ShareItem: DropDownItemProps[] = [ { href: `https://twitter.com/intent/tweet?text=${title}&url=${link}`, title: (