import Chip from '@elementor/ui/Chip';
import PropTypes from 'prop-types';
import { BLOCKS } from '@ea11y-apps/scanner/constants';
import { __ } from '@wordpress/i18n';
export const ResolveChip = ({ block }) =>
block === BLOCKS.altText ? (
) : (
);
ResolveChip.propTypes = {
block: PropTypes.string.isRequired,
};