Add Current Page Class to ACF Link

<?php $link = get_field( 'link' ); ?>

<a class="<?php if( is_page( $link['title'] ) ) : ?>current-page<?php endif; ?>" href="<?php echo esc_url( $link['url'] ); ?>" target="<?php echo esc_attr( $link['target'] ); ?>">>
	<?php echo esc_html( $link['title'] ); ?>
</a>