import ActionLink from 'sentry/components/actions/actionLink'; import {IconIssues} from 'sentry/icons'; import {t} from 'sentry/locale'; type Props = { onUpdate: (data: {inbox: boolean}) => void; disabled?: boolean; }; function ReviewAction({disabled, onUpdate}: Props) { return ( onUpdate({inbox: false})} title={t('Mark Reviewed')} icon={} > {t('Mark Reviewed')} ); } export default ReviewAction;