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