import { Icon, Button } from '@wordpress/components'; import { __, sprintf } from '@wordpress/i18n'; import image from '@draft/svg/Image'; export const CreditCounter = ({ usedCredits, total }) => { if (usedCredits < total) { return (

{sprintf( // translators: %1$s is the number of used credits, %2$s is the total credits __('%1$s of %2$s daily image credits used', 'extendify-local'), usedCredits, total, )}

); } return (

{sprintf( // translators: %1$s is the number of used credits, %2$s is the total credits __('%1$s of %2$s daily image credits used', 'extendify-local'), usedCredits, total, )}

{__( 'You can still explore and find great images on Unsplash until your credits reset.', 'extendify-local', )}

); };