import { LinkIcon } from '@heroicons/react/outline' import toast from 'react-hot-toast' import { copyToClipboard } from 'web/lib/util/copy' import { track } from 'web/lib/service/analytics' import { Modal } from './layout/modal' import { Col } from './layout/col' import { Title } from './title' import { Button } from './button' import { TweetButton } from './tweet-button' import { Row } from './layout/row' import { CopyLinkButton } from './copy-link-button' export function SharePostModal(props: { shareUrl: string isOpen: boolean setOpen: (open: boolean) => void }) { const { isOpen, setOpen, shareUrl } = props return ( <CopyLinkButton url={shareUrl} tracking="copy share post link" /> <Row className="z-0 justify-start gap-4 self-center"> <TweetButton className="self-start" tweetText={shareUrl} /> </Row> </Col> </Modal> ) }