import React, { ReactElement } from 'react'; import { FacebookIcon, FacebookShareButton, TwitterIcon, TwitterShareButton, } from 'react-share'; import EditOnGithub from '../EditOnGithub'; import GithubButton from '../GithubButton/GithubButton'; import styles from './SocialBar.module.css'; interface SocialBarProps { filePath?: string; } export default function SocialBar({ filePath }: SocialBarProps): ReactElement { return ( <>