import _identity from 'lodash/identity' import React from 'react' import SVG from 'react-inlinesvg' import { getImage } from '../../utils/getImage' interface IShareButtonProps { url: string; disabled: boolean; children: Node; } export const SpotifyIcon = () => export const InstagramIcon = () => export const SocialButton = (props: IShareButtonProps) => { const { children, url, disabled } = props const handleClick = () => { window.open(url) } return ( ) }