import type { PopupProps } from '../../_shared/Popup' import { clsx } from 'clsx' import { Show } from 'solid-js' import { useLocalize } from '../../../context/localize' import { Popup } from '../../_shared/Popup' import { SoonChip } from '../../_shared/SoonChip' import styles from './FeedArticlePopup.module.scss' type FeedArticlePopupProps = { isOwner: boolean onInviteClick: () => void onShareClick: () => void } & Omit export const FeedArticlePopup = (props: FeedArticlePopupProps) => { const { t } = useLocalize() return ( <> ) }